eslint-config-angular-strict 22.0.4 → 22.0.6

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 +1 -1
package/index.js CHANGED
@@ -274,14 +274,17 @@ export default [
274
274
  'perfectionist/sort-union-types': ['error', { groups: ['unknown', 'nullish'] }],
275
275
 
276
276
  // Unicorn rules
277
+ 'unicorn/consistent-class-member-order': 'off',
277
278
  'unicorn/consistent-function-scoping': ['error', { checkArrowFunctions: false }],
278
279
  'unicorn/new-for-builtins': 'off',
279
280
  'unicorn/no-abusive-eslint-disable': 'off',
280
281
  'unicorn/no-for-each': 'off',
281
282
  'unicorn/no-null': 'off',
282
283
  'unicorn/no-this-outside-of-class': 'off',
284
+ 'unicorn/prefer-await': 'off',
283
285
  'unicorn/prefer-includes-over-repeated-comparisons': ['error', { minimumComparisons: 6 }],
284
286
  'unicorn/prefer-split-limit': 'off',
287
+ 'unicorn/prefer-temporal': 'off',
285
288
  'unicorn/prefer-top-level-await': 'off',
286
289
  'unicorn/switch-case-braces': ['error', 'avoid'],
287
290
  'unicorn/try-complexity': ['error', { max: 5 }],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-angular-strict",
3
- "version": "22.0.4",
3
+ "version": "22.0.6",
4
4
  "description": "Modern ESLint configuration with strict rules for Angular development.",
5
5
  "keywords": [
6
6
  "angular",