eslint-config-angular-strict 22.0.1 → 22.0.3

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 (2) hide show
  1. package/index.js +3 -1
  2. package/package.json +4 -4
package/index.js CHANGED
@@ -48,6 +48,7 @@ export default [
48
48
  // ESLint rules
49
49
  'class-methods-use-this': 'off',
50
50
  'complexity': ['error', { max: 25 }],
51
+ 'max-depth': 'error',
51
52
  'max-lines': ['error', { max: 425, skipBlankLines: true, skipComments: true }],
52
53
  'no-fallthrough': 'off',
53
54
  'no-param-reassign': ['error', { props: false }],
@@ -276,7 +277,7 @@ export default [
276
277
  'unicorn/consistent-function-scoping': ['error', { checkArrowFunctions: false }],
277
278
  'unicorn/new-for-builtins': 'off',
278
279
  'unicorn/no-abusive-eslint-disable': 'off',
279
- 'unicorn/no-array-for-each': 'off',
280
+ 'unicorn/no-for-each': 'off',
280
281
  'unicorn/no-null': 'off',
281
282
  'unicorn/no-this-outside-of-class': 'off',
282
283
  'unicorn/prefer-includes-over-repeated-comparisons': ['error', { minimumComparisons: 6 }],
@@ -307,6 +308,7 @@ export default [
307
308
  '@angular-eslint/template/prefer-ngsrc': 'off',
308
309
 
309
310
  // Unicorn rules
311
+ 'unicorn/no-empty-file': 'off',
310
312
  'unicorn/prefer-string-raw': 'off',
311
313
  'unicorn/template-indent': 'off',
312
314
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-angular-strict",
3
- "version": "22.0.1",
3
+ "version": "22.0.3",
4
4
  "description": "Modern ESLint configuration with strict rules for Angular development.",
5
5
  "keywords": [
6
6
  "angular",
@@ -44,14 +44,14 @@
44
44
  "@typescript-eslint/parser": "8.61.0",
45
45
  "@typescript-eslint/types": "8.61.0",
46
46
  "@typescript-eslint/utils": "8.61.0",
47
- "eslint": "10.4.1",
47
+ "eslint": "10.5.0",
48
48
  "eslint-config-airbnb-extended": "3.1.0",
49
49
  "eslint-plugin-import-x": "4.16.2",
50
50
  "eslint-plugin-perfectionist": "5.9.0",
51
- "eslint-plugin-unicorn": "65.0.1"
51
+ "eslint-plugin-unicorn": "66.0.0"
52
52
  },
53
53
  "devDependencies": {
54
54
  "typescript": "6.0.3"
55
55
  },
56
- "packageManager": "yarn@4.16.0+sha512.5374c94eb4ef6aa8188fb112f20c1aa6569f248d676c5e576e1fd2a1a4d8d87a96df65d9dfe1c2a0252cbe38bda46cf18d955005b81b43cc7607a5c9d56fd2b6"
56
+ "packageManager": "yarn@4.17.0+sha512.c2957de2f9025ab14d63b24d0d8be1f1655810e22c341042c27f7ecd017b180ec12db73d69ac366d71b304ef9f069349ce462de96f04f8f1da317f4f762c95ae"
57
57
  }