eslint-config-angular-strict 2.2.44 → 2.2.46

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 -0
  2. package/package.json +6 -6
package/index.js CHANGED
@@ -100,6 +100,7 @@ export default [
100
100
  '@stylistic/arrow-parens': ['error', 'as-needed', { requireForBlockBody: true }],
101
101
  '@stylistic/lines-between-class-members': ['error', 'always', { exceptAfterSingleLine: true }],
102
102
  '@stylistic/max-len': ['error', { code: 170, tabWidth: 2 }],
103
+ '@stylistic/newline-per-chained-call': ['error', { ignoreChainWithDepth: 5 }],
103
104
  '@stylistic/object-curly-newline': [
104
105
  'error',
105
106
  {
@@ -128,6 +129,7 @@ export default [
128
129
  'unicorn/new-for-builtins': 'off',
129
130
  'unicorn/no-abusive-eslint-disable': 'off',
130
131
  'unicorn/no-array-for-each': 'off',
132
+ 'unicorn/no-null': 'off',
131
133
  'unicorn/no-useless-promise-resolve-reject': 'off',
132
134
  'unicorn/switch-case-braces': 'off',
133
135
  },
@@ -154,6 +156,7 @@ export default [
154
156
  '@angular-eslint/template/no-interpolation-in-attributes': 'error',
155
157
  '@angular-eslint/template/no-negated-async': 'error',
156
158
  '@angular-eslint/template/no-positive-tabindex': 'error',
159
+ '@angular-eslint/template/prefer-at-else': 'error',
157
160
  '@angular-eslint/template/prefer-self-closing-tags': 'error',
158
161
  '@angular-eslint/template/role-has-required-aria': 'error',
159
162
  '@angular-eslint/template/table-scope': 'error',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-angular-strict",
3
- "version": "2.2.44",
3
+ "version": "2.2.46",
4
4
  "description": "Modern ESLint configuration with strict rules for Angular development.",
5
5
  "keywords": [
6
6
  "angular",
@@ -35,17 +35,17 @@
35
35
  "test": "cd tests && yarn install && eslint . --format=stylish"
36
36
  },
37
37
  "dependencies": {
38
- "@angular-eslint/builder": "20.3.0",
39
- "@angular-eslint/eslint-plugin": "20.3.0",
40
- "@angular-eslint/eslint-plugin-template": "20.3.0",
41
- "@angular-eslint/template-parser": "20.3.0",
38
+ "@angular-eslint/builder": "20.4.0",
39
+ "@angular-eslint/eslint-plugin": "20.4.0",
40
+ "@angular-eslint/eslint-plugin-template": "20.4.0",
41
+ "@angular-eslint/template-parser": "20.4.0",
42
42
  "@stylistic/eslint-plugin": "5.4.0",
43
43
  "@typescript-eslint/eslint-plugin": "8.46.0",
44
44
  "@typescript-eslint/parser": "8.46.0",
45
45
  "@typescript-eslint/types": "8.46.0",
46
46
  "@typescript-eslint/utils": "8.46.0",
47
47
  "eslint": "9.37.0",
48
- "eslint-config-airbnb-extended": "2.3.1",
48
+ "eslint-config-airbnb-extended": "2.3.2",
49
49
  "eslint-import-resolver-typescript": "4.4.4",
50
50
  "eslint-plugin-import-x": "4.16.1",
51
51
  "eslint-plugin-unicorn": "61.0.2",