eslint-config-angular-strict 22.0.17 → 22.0.18
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/README.md +1 -1
- package/index.js +1 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -100,7 +100,7 @@ Make sure your `tsconfig.json` is properly configured:
|
|
|
100
100
|
}
|
|
101
101
|
```
|
|
102
102
|
|
|
103
|
-
> **ℹ️ Note**: `target: "esnext"` auto-includes the latest standard lib, which several Unicorn rules require. Without it, some rules may suggest APIs that TypeScript doesn't recognize as built-in.
|
|
103
|
+
> **ℹ️ Note**: `target: "esnext"` auto-includes the latest standard lib (esnext + DOM), which several Unicorn rules require. Without it, some rules may suggest APIs that TypeScript doesn't recognize as built-in. No need to set `lib` explicitly — TypeScript infers it from `target`.
|
|
104
104
|
|
|
105
105
|
## Prettier
|
|
106
106
|
|
package/index.js
CHANGED
|
@@ -50,6 +50,7 @@ export default [
|
|
|
50
50
|
'complexity': ['error', { max: 25 }],
|
|
51
51
|
'max-depth': 'error',
|
|
52
52
|
'max-lines': ['error', { max: 425, skipBlankLines: true, skipComments: true }],
|
|
53
|
+
'max-nested-callbacks': 'error',
|
|
53
54
|
'no-fallthrough': 'off',
|
|
54
55
|
'no-param-reassign': ['error', { props: false }],
|
|
55
56
|
'no-plusplus': 'off',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-angular-strict",
|
|
3
|
-
"version": "22.0.
|
|
3
|
+
"version": "22.0.18",
|
|
4
4
|
"description": "Modern ESLint configuration with strict rules for Angular development.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
"@typescript-eslint/parser": "8.62.0",
|
|
45
45
|
"@typescript-eslint/types": "8.62.0",
|
|
46
46
|
"@typescript-eslint/utils": "8.62.0",
|
|
47
|
-
"eslint": "10.
|
|
47
|
+
"eslint": "10.6.0",
|
|
48
48
|
"eslint-config-airbnb-extended": "3.1.0",
|
|
49
|
-
"eslint-plugin-import-x": "4.17.
|
|
49
|
+
"eslint-plugin-import-x": "4.17.1",
|
|
50
50
|
"eslint-plugin-perfectionist": "5.9.1",
|
|
51
51
|
"eslint-plugin-unicorn": "69.0.0"
|
|
52
52
|
},
|