|
| 1 | +{ |
| 2 | + "env": { |
| 3 | + "browser": true, |
| 4 | + "node": true, |
| 5 | + "es6": true, |
| 6 | + "es2017": true |
| 7 | + }, |
| 8 | + "overrides": [ |
| 9 | + { |
| 10 | + "files": ["*.ts"], |
| 11 | + "extends": [ |
| 12 | + "eslint:recommended", |
| 13 | + "plugin:@typescript-eslint/eslint-recommended", |
| 14 | + "plugin:@typescript-eslint/recommended", |
| 15 | + "plugin:@typescript-eslint/recommended-requiring-type-checking" |
| 16 | + ], |
| 17 | + "parser": "@typescript-eslint/parser", |
| 18 | + "parserOptions": { |
| 19 | + "ecmaVersion": 10, |
| 20 | + "project": [ |
| 21 | + "./tsconfig.serve.json", |
| 22 | + "./src/tsconfig.app.json", |
| 23 | + "./src/tsconfig.spec.json", |
| 24 | + "./e2e/tsconfig.e2e.json" |
| 25 | + ], |
| 26 | + "sourceType": "module", |
| 27 | + "ecmaFeatures": { |
| 28 | + "modules": true |
| 29 | + } |
| 30 | + }, |
| 31 | + "plugins": [ |
| 32 | + "@typescript-eslint", |
| 33 | + "@angular-eslint/eslint-plugin" |
| 34 | + ], |
| 35 | + "rules": { |
| 36 | + "@typescript-eslint/indent": [ |
| 37 | + "error", 2, { |
| 38 | + "SwitchCase": 1, |
| 39 | + "CallExpression": {"arguments": "first"}, |
| 40 | + "FunctionExpression": {"parameters": "first"}, |
| 41 | + "FunctionDeclaration": {"parameters": "first"} |
| 42 | + } |
| 43 | + ], |
| 44 | + "@typescript-eslint/no-empty-function": 0, |
| 45 | + "@typescript-eslint/no-var-requires": 0, |
| 46 | + "@typescript-eslint/no-explicit-any": 0, |
| 47 | + "@typescript-eslint/no-unsafe-call": 0, |
| 48 | + "@typescript-eslint/no-unsafe-member-access": 0, |
| 49 | + "@typescript-eslint/no-unsafe-assignment": 0, |
| 50 | + "@typescript-eslint/no-unsafe-return": 0, |
| 51 | + "@typescript-eslint/no-floating-promises": 0, |
| 52 | + "@angular-eslint/use-injectable-provided-in": "error", |
| 53 | + "@angular-eslint/no-attribute-decorator": "error" |
| 54 | + } |
| 55 | + }, |
| 56 | + { |
| 57 | + "files": ["*.component.html"], |
| 58 | + "parser": "@angular-eslint/template-parser", |
| 59 | + "plugins": ["@angular-eslint/template"], |
| 60 | + "rules": { |
| 61 | + "@angular-eslint/template/banana-in-a-box": "error", |
| 62 | + "@angular-eslint/template/no-negated-async": "error" |
| 63 | + } |
| 64 | + } |
| 65 | + ] |
| 66 | +} |
0 commit comments