|
18 | 18 | "createDefaultProgram": true |
19 | 19 | }, |
20 | 20 | "extends": [ |
| 21 | + "eslint:recommended", |
| 22 | + "plugin:@typescript-eslint/recommended", |
21 | 23 | "plugin:@angular-eslint/recommended", |
22 | | - "plugin:@angular-eslint/ng-cli-compat", |
23 | | - "plugin:@angular-eslint/ng-cli-compat--formatting-add-on", |
24 | 24 | "plugin:@angular-eslint/template/process-inline-templates" |
25 | 25 | ], |
26 | 26 | "rules": { |
|
81 | 81 | "format": null |
82 | 82 | } |
83 | 83 | ], |
84 | | - "no-underscore-dangle": "off" |
| 84 | + "@typescript-eslint/no-explicit-any": "off", |
| 85 | + "no-underscore-dangle": "off", |
| 86 | + "arrow-spacing": "error", |
| 87 | + "comma-spacing": "error", |
| 88 | + "indent": ["error", 2], |
| 89 | + "key-spacing": "error", |
| 90 | + "keyword-spacing": "error", |
| 91 | + "object-curly-spacing": ["error", "always"], |
| 92 | + "object-shorthand": "error", |
| 93 | + "spaced-comment": "error", |
| 94 | + "space-before-blocks": "error", |
| 95 | + "space-infix-ops": "error", |
| 96 | + "semi": "error" |
85 | 97 | } |
86 | 98 | }, |
87 | 99 | { |
|
0 commit comments