eslint-config-angular-strict 22.0.17 → 22.0.19

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/index.js +1 -0
  3. package/package.json +7 -7
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.17",
3
+ "version": "22.0.19",
4
4
  "description": "Modern ESLint configuration with strict rules for Angular development.",
5
5
  "keywords": [
6
6
  "angular",
@@ -40,13 +40,13 @@
40
40
  "@angular-eslint/eslint-plugin-template": "22.0.0",
41
41
  "@angular-eslint/template-parser": "22.0.0",
42
42
  "@stylistic/eslint-plugin": "5.10.0",
43
- "@typescript-eslint/eslint-plugin": "8.62.0",
44
- "@typescript-eslint/parser": "8.62.0",
45
- "@typescript-eslint/types": "8.62.0",
46
- "@typescript-eslint/utils": "8.62.0",
47
- "eslint": "10.5.0",
43
+ "@typescript-eslint/eslint-plugin": "8.62.1",
44
+ "@typescript-eslint/parser": "8.62.1",
45
+ "@typescript-eslint/types": "8.62.1",
46
+ "@typescript-eslint/utils": "8.62.1",
47
+ "eslint": "10.6.0",
48
48
  "eslint-config-airbnb-extended": "3.1.0",
49
- "eslint-plugin-import-x": "4.17.0",
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
  },