Skip to content

Commit 9dc7e04

Browse files
authored
feat: upgrading to v16 (#757)
1 parent 150d755 commit 9dc7e04

11 files changed

+2477
-1715
lines changed

.eslintrc.json

+8-23
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
"createDefaultProgram": true
1010
},
1111
"extends": [
12-
"plugin:@angular-eslint/ng-cli-compat",
13-
"plugin:@angular-eslint/ng-cli-compat--formatting-add-on",
12+
"plugin:@typescript-eslint/recommended",
13+
"plugin:@angular-eslint/recommended",
1414
"plugin:@angular-eslint/template/process-inline-templates",
15-
"plugin:@typescript-eslint/all",
1615
"prettier"
1716
],
1817
"plugins": ["eslint-plugin-no-null", "eslint-plugin-unicorn"],
@@ -158,7 +157,12 @@
158157
}
159158
}
160159
],
161-
"@typescript-eslint/parameter-properties": ["error", { "prefer": "parameter-property" }],
160+
"@typescript-eslint/parameter-properties": [
161+
"error",
162+
{
163+
"prefer": "parameter-property"
164+
}
165+
],
162166
"@typescript-eslint/array-type": [
163167
"error",
164168
{
@@ -231,25 +235,6 @@
231235
"complexity": "error",
232236
"default-case": "error",
233237
"eqeqeq": ["error", "always"],
234-
"import/no-default-export": "error",
235-
"import/no-extraneous-dependencies": "error",
236-
"import/no-internal-modules": [
237-
"error",
238-
{
239-
"allow": [
240-
"@angular/core/testing/*",
241-
"@angular/platform-browser-dynamic/testing/*",
242-
"zone.js/dist/*",
243-
"core-js/*",
244-
"@angular/common/http/*",
245-
"rxjs/operators",
246-
"@ngneat/spectator/*",
247-
"rxjs/testing"
248-
]
249-
}
250-
],
251-
"import/no-unassigned-import": "error",
252-
"import/order": "error",
253238
"max-lines": ["error", 500],
254239
"no-duplicate-case": "error",
255240
"no-duplicate-imports": "error",

0 commit comments

Comments
 (0)