eslint-config-angular-strict 22.1.14 → 22.1.16

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 +2 -2
package/index.js CHANGED
@@ -280,11 +280,13 @@ export default [
280
280
  'perfectionist/sort-union-types': ['error', { groups: ['unknown', 'nullish'] }],
281
281
 
282
282
  // Unicorn rules
283
+ 'unicorn/consistent-arrow-return-style': 'off',
283
284
  'unicorn/consistent-class-member-order': 'off',
284
285
  'unicorn/consistent-function-scoping': ['error', { checkArrowFunctions: false }],
285
286
  'unicorn/new-for-builtins': 'off',
286
287
  'unicorn/no-abusive-eslint-disable': 'off',
287
288
  'unicorn/no-array-front-mutation': 'off',
289
+ 'unicorn/no-barrel-files': 'off',
288
290
  'unicorn/no-for-each': 'off',
289
291
  'unicorn/no-null': 'off',
290
292
  'unicorn/no-this-outside-of-class': 'off',
@@ -322,6 +324,7 @@ export default [
322
324
  'unicorn/no-incorrect-template-string-interpolation': 'off',
323
325
  'unicorn/no-useless-template-literals': 'off',
324
326
  'unicorn/prefer-string-raw': 'off',
327
+ 'unicorn/single-line-block-comment-style': 'off',
325
328
  'unicorn/template-indent': 'off',
326
329
  },
327
330
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-angular-strict",
3
- "version": "22.1.14",
3
+ "version": "22.1.16",
4
4
  "description": "Modern ESLint configuration with strict rules for Angular development.",
5
5
  "keywords": [
6
6
  "angular",
@@ -48,7 +48,7 @@
48
48
  "eslint-config-airbnb-extended": "3.2.0",
49
49
  "eslint-plugin-import-x": "4.17.1",
50
50
  "eslint-plugin-perfectionist": "5.10.1",
51
- "eslint-plugin-unicorn": "72.0.0"
51
+ "eslint-plugin-unicorn": "73.0.0"
52
52
  },
53
53
  "devDependencies": {
54
54
  "typescript": "6.0.3"