Skip to content

Commit

Permalink
release v1.17 (#97)
Browse files Browse the repository at this point in the history
Co-authored-by: shallegro <[email protected]>
  • Loading branch information
shyallegro and shallegro authored Dec 5, 2024
1 parent a7d2d32 commit ff27bad
Show file tree
Hide file tree
Showing 593 changed files with 20,430 additions and 12,755 deletions.
53 changes: 0 additions & 53 deletions .eslintrc.json

This file was deleted.

52 changes: 52 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
// @ts-check
const eslint = require("@eslint/js");
const tseslint = require("typescript-eslint");
const angular = require("angular-eslint");

module.exports = tseslint.config(
{
ignores: ["node_modules/*", "build/*", "dist/*", "electron/*"],
files: ["**/*.ts"],
extends: [
eslint.configs.recommended,
...tseslint.configs.recommended,
...tseslint.configs.stylistic,
...angular.configs.tsRecommended,
],
processor: angular.processInlineTemplates,
rules: {
"no-console": "error",
"no-debugger": "error",
"quotes": ["error", "single", {
"allowTemplateLiterals": true
}],
"@angular-eslint/directive-selector": [
"error",
{
"type": "attribute",
"prefix": "sm",
"style": "camelCase"
}
],
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "sm",
"style": "kebab-case"
}
],
"@ngrx/prefer-effect-callback-in-block-statement": "off"
},
},
{
files: ["**/*.html"],
extends: [
...angular.configs.templateRecommended,
...angular.configs.templateAccessibility,
],
rules: {
"@angular-eslint/template/use-track-by-function": "warn"
},
}
);
Loading

0 comments on commit ff27bad

Please sign in to comment.