eslint-config-angular-strict 2.2.31 → 2.2.33
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/.claude/settings.local.json +34 -0
- package/.nx/cache/18.3.5-nx.darwin-arm64.node +0 -0
- package/.nx/cache/nx_files.nxt +0 -0
- package/index.js +6 -2
- package/package.json +2 -2
- package/yarn-error.log +1352 -0
- package/tests/eslint.config.js +0 -3
- package/tests/package.json +0 -9
- package/tests/sample.component.html +0 -38
- package/tests/sample.component.ts +0 -25
- package/tests/tsconfig.json +0 -25
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permissions": {
|
|
3
|
+
"allow": [
|
|
4
|
+
"Bash(npm view:*)",
|
|
5
|
+
"Bash(yarn info:*)",
|
|
6
|
+
"Bash(yarn install)",
|
|
7
|
+
"Bash(yarn add:*)",
|
|
8
|
+
"Bash(npx eslint:*)",
|
|
9
|
+
"Bash(yarn remove:*)",
|
|
10
|
+
"Bash(npx tsc:*)",
|
|
11
|
+
"Bash(node:*)",
|
|
12
|
+
"Bash(yarn install:*)",
|
|
13
|
+
"Bash(yarn list:*)",
|
|
14
|
+
"Bash(npm pack:*)",
|
|
15
|
+
"Bash(npm whoami:*)",
|
|
16
|
+
"Bash(sudo chown:*)",
|
|
17
|
+
"Bash(npm publish:*)",
|
|
18
|
+
"Bash(npm test)",
|
|
19
|
+
"Bash(tar:*)",
|
|
20
|
+
"Bash(rm:*)",
|
|
21
|
+
"Bash(sed:*)",
|
|
22
|
+
"Bash(find:*)",
|
|
23
|
+
"Bash(mkdir:*)",
|
|
24
|
+
"Bash(mv:*)",
|
|
25
|
+
"Bash(tree:*)",
|
|
26
|
+
"Bash(yarn outdated)",
|
|
27
|
+
"Bash(yarn upgrade)",
|
|
28
|
+
"Bash(yarn upgrade:*)",
|
|
29
|
+
"Bash(yarn test)"
|
|
30
|
+
],
|
|
31
|
+
"deny": [],
|
|
32
|
+
"ask": []
|
|
33
|
+
}
|
|
34
|
+
}
|
|
Binary file
|
|
Binary file
|
package/index.js
CHANGED
|
@@ -11,7 +11,12 @@ export default [
|
|
|
11
11
|
// Global plugins configuration for all files
|
|
12
12
|
{
|
|
13
13
|
ignores: ['dist/**', 'node_modules/**'],
|
|
14
|
-
plugins: {
|
|
14
|
+
plugins: {
|
|
15
|
+
'@angular-eslint/template': angularTemplate,
|
|
16
|
+
'@stylistic': stylistic,
|
|
17
|
+
'@typescript-eslint': tsEslint,
|
|
18
|
+
'import-x': importX,
|
|
19
|
+
},
|
|
15
20
|
},
|
|
16
21
|
|
|
17
22
|
// Airbnb strict rules
|
|
@@ -124,7 +129,6 @@ export default [
|
|
|
124
129
|
// HTML Template files configuration
|
|
125
130
|
files: ['**/*.html'],
|
|
126
131
|
languageOptions: { parser: angularTemplateParser },
|
|
127
|
-
plugins: { '@angular-eslint/template': angularTemplate },
|
|
128
132
|
rules: {
|
|
129
133
|
'@angular-eslint/template/attributes-order': ['error', { alphabetical: true }],
|
|
130
134
|
'@angular-eslint/template/banana-in-box': 'error',
|
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.33",
|
|
4
4
|
"description": "Modern ESLint configuration with strict rules for Angular development.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@typescript-eslint/parser": "8.45.0",
|
|
45
45
|
"@typescript-eslint/types": "8.45.0",
|
|
46
46
|
"@typescript-eslint/utils": "8.45.0",
|
|
47
|
-
"eslint": "9.
|
|
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",
|