eslint-config-angular-strict 2.3.88 → 2.3.90
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 +6 -0
- package/package.json +6 -6
package/index.js
CHANGED
|
@@ -174,6 +174,9 @@ export default [
|
|
|
174
174
|
},
|
|
175
175
|
{ anyOf: [{ selector: 'get-method' }, { selector: 'set-method' }], groupName: 'public-accessors' },
|
|
176
176
|
{ anyOf: [{ selector: 'method' }, { selector: 'function-property' }], groupName: 'public-methods' },
|
|
177
|
+
{ elementValuePattern: '^[A-Z][A-Z0-9_]*$', groupName: 'public-constant-aliases', modifiers: ['public', 'readonly'] },
|
|
178
|
+
{ elementValuePattern: '^[A-Z][A-Z0-9_]*$', groupName: 'protected-constant-aliases', modifiers: ['protected', 'readonly'] },
|
|
179
|
+
{ elementValuePattern: '^[A-Z][A-Z0-9_]*$', groupName: 'private-constant-aliases', modifiers: ['private', 'readonly'] },
|
|
177
180
|
{
|
|
178
181
|
anyOf: [
|
|
179
182
|
{ modifiers: ['public', 'readonly'], selector: 'property' },
|
|
@@ -200,10 +203,13 @@ export default [
|
|
|
200
203
|
'decorated-public',
|
|
201
204
|
'decorated-private',
|
|
202
205
|
['property', 'accessor-property', 'static-property', 'static-accessor-property'],
|
|
206
|
+
'public-constant-aliases',
|
|
203
207
|
'public-readonly-fields',
|
|
204
208
|
['protected-property', 'protected-accessor-property', 'protected-static-property', 'protected-static-accessor-property'],
|
|
209
|
+
'protected-constant-aliases',
|
|
205
210
|
'protected-readonly-fields',
|
|
206
211
|
['private-property', 'private-accessor-property', 'private-static-property', 'private-static-accessor-property'],
|
|
212
|
+
'private-constant-aliases',
|
|
207
213
|
'private-readonly-fields',
|
|
208
214
|
'ctor',
|
|
209
215
|
'static-block',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-angular-strict",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.90",
|
|
4
4
|
"description": "Modern ESLint configuration with strict rules for Angular development.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"@angular-eslint/eslint-plugin-template": "21.4.0",
|
|
41
41
|
"@angular-eslint/template-parser": "21.4.0",
|
|
42
42
|
"@stylistic/eslint-plugin": "5.10.0",
|
|
43
|
-
"@typescript-eslint/eslint-plugin": "8.59.
|
|
44
|
-
"@typescript-eslint/parser": "8.59.
|
|
45
|
-
"@typescript-eslint/types": "8.59.
|
|
46
|
-
"@typescript-eslint/utils": "8.59.
|
|
43
|
+
"@typescript-eslint/eslint-plugin": "8.59.4",
|
|
44
|
+
"@typescript-eslint/parser": "8.59.4",
|
|
45
|
+
"@typescript-eslint/types": "8.59.4",
|
|
46
|
+
"@typescript-eslint/utils": "8.59.4",
|
|
47
47
|
"eslint": "9.39.4",
|
|
48
48
|
"eslint-config-airbnb-extended": "3.1.0",
|
|
49
49
|
"eslint-plugin-import-x": "4.16.2",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"typescript": "5.9.3"
|
|
55
55
|
},
|
|
56
|
-
"packageManager": "yarn@4.
|
|
56
|
+
"packageManager": "yarn@4.15.0+sha512.07ec708ac11e2eaa4ea2b04cfbb272812f7e74a753f1595eaef4486c663a98306a30cca3e6fc40f7a0b168dcfb3a2490b6a5e0501e20fb69cc36f563dd161c53"
|
|
57
57
|
}
|