eslint-config-angular-strict 2.3.34 → 2.3.36

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.
Binary file
package/README.md CHANGED
@@ -56,7 +56,7 @@ yarn add eslint-config-angular-strict --dev
56
56
 
57
57
  ### 2. Configure ESLint
58
58
 
59
- Create an `eslint.config.js` file (ESLint flat config format):
59
+ Create an `eslint.config.js` file (flat config format):
60
60
 
61
61
  ```javascript
62
62
  import angularStrict from 'eslint-config-angular-strict';
package/index.js CHANGED
@@ -33,7 +33,7 @@ export default [
33
33
  plugins: { '@angular-eslint': angularEslintPlugin },
34
34
  rules: {
35
35
  // Angular ESLint rules
36
- '@angular-eslint/component-class-suffix': ['error', { suffixes: ['Component', 'Modal', 'Page'] }],
36
+ '@angular-eslint/component-class-suffix': ['error', { suffixes: ['Component', 'Drawer', 'Modal', 'Page'] }],
37
37
  '@angular-eslint/component-max-inline-declarations': 'error',
38
38
  '@angular-eslint/computed-must-return': 'error',
39
39
  '@angular-eslint/consistent-component-styles': 'error',
@@ -77,6 +77,7 @@ export default [
77
77
  'no-plusplus': 'off',
78
78
  'no-return-assign': 'off',
79
79
  'no-underscore-dangle': ['error', { allowAfterThis: true }],
80
+ 'radix': ['error', 'as-needed'],
80
81
  'sort-keys': ['error', 'asc', { allowLineSeparatedGroups: true, natural: true }],
81
82
 
82
83
  // Import rules
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "eslint-config-angular-strict",
3
- "version": "2.3.34",
3
+ "version": "2.3.36",
4
4
  "description": "Modern ESLint configuration with strict rules for Angular development.",
5
5
  "keywords": [
6
6
  "angular",
7
7
  "eslint",
8
8
  "eslint-config",
9
9
  "eslint-plugin",
10
- "eslint10",
10
+ "eslint9",
11
11
  "flat-config",
12
12
  "linting-rules",
13
13
  "strict-rules",
@@ -44,15 +44,12 @@
44
44
  "@typescript-eslint/parser": "8.57.0",
45
45
  "@typescript-eslint/types": "8.57.0",
46
46
  "@typescript-eslint/utils": "8.57.0",
47
- "eslint": "10.0.3",
47
+ "eslint": "9.39.4",
48
48
  "eslint-config-airbnb-extended": "3.0.1",
49
49
  "eslint-plugin-import-x": "4.16.2",
50
50
  "eslint-plugin-ng-module-sort": "1.4.0",
51
51
  "eslint-plugin-unicorn": "63.0.0"
52
52
  },
53
- "resolutions": {
54
- "@typescript-eslint/utils": "8.57.0"
55
- },
56
53
  "devDependencies": {
57
54
  "typescript": "5.9.3"
58
55
  },