eslint-config-angular-strict 2.2.42 → 2.2.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +2 -0
- package/package.json +6 -6
package/index.js
CHANGED
|
@@ -115,6 +115,7 @@ export default [
|
|
|
115
115
|
'@stylistic/padded-blocks': ['error', { blocks: 'never', classes: 'always', switches: 'never' }],
|
|
116
116
|
|
|
117
117
|
// TypeScript ESLint rules
|
|
118
|
+
"@typescript-eslint/no-unnecessary-type-conversion": "error",
|
|
118
119
|
'@typescript-eslint/consistent-type-imports': ['error', { prefer: 'no-type-imports' }],
|
|
119
120
|
'@typescript-eslint/member-ordering': 'error',
|
|
120
121
|
'@typescript-eslint/no-extraneous-class': ['error', { allowEmpty: true, allowStaticOnly: true }],
|
|
@@ -124,6 +125,7 @@ export default [
|
|
|
124
125
|
'@typescript-eslint/unbound-method': ['error', { ignoreStatic: true }],
|
|
125
126
|
|
|
126
127
|
// Unicorn rules
|
|
128
|
+
'unicorn/new-for-builtins': 'off',
|
|
127
129
|
'unicorn/no-abusive-eslint-disable': 'off',
|
|
128
130
|
'unicorn/no-array-for-each': 'off',
|
|
129
131
|
'unicorn/no-useless-promise-resolve-reject': 'off',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-angular-strict",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.44",
|
|
4
4
|
"description": "Modern ESLint configuration with strict rules for Angular development.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -40,16 +40,16 @@
|
|
|
40
40
|
"@angular-eslint/eslint-plugin-template": "20.3.0",
|
|
41
41
|
"@angular-eslint/template-parser": "20.3.0",
|
|
42
42
|
"@stylistic/eslint-plugin": "5.4.0",
|
|
43
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
44
|
-
"@typescript-eslint/parser": "8.
|
|
45
|
-
"@typescript-eslint/types": "8.
|
|
46
|
-
"@typescript-eslint/utils": "8.
|
|
43
|
+
"@typescript-eslint/eslint-plugin": "8.46.0",
|
|
44
|
+
"@typescript-eslint/parser": "8.46.0",
|
|
45
|
+
"@typescript-eslint/types": "8.46.0",
|
|
46
|
+
"@typescript-eslint/utils": "8.46.0",
|
|
47
47
|
"eslint": "9.37.0",
|
|
48
48
|
"eslint-config-airbnb-extended": "2.3.1",
|
|
49
49
|
"eslint-import-resolver-typescript": "4.4.4",
|
|
50
50
|
"eslint-plugin-import-x": "4.16.1",
|
|
51
51
|
"eslint-plugin-unicorn": "61.0.2",
|
|
52
|
-
"typescript-eslint": "8.
|
|
52
|
+
"typescript-eslint": "8.46.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"typescript": "5.9.3"
|