eslint-config-angular-strict 22.0.15 → 22.0.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 (3) hide show
  1. package/README.md +0 -3
  2. package/index.js +2 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -88,7 +88,6 @@ Make sure your `tsconfig.json` is properly configured:
88
88
  "noUncheckedIndexedAccess": true,
89
89
  "noUnusedLocals": true,
90
90
  "noUnusedParameters": true,
91
- "target": "esnext",
92
91
  },
93
92
  "angularCompilerOptions": {
94
93
  // ...
@@ -100,8 +99,6 @@ Make sure your `tsconfig.json` is properly configured:
100
99
  }
101
100
  ```
102
101
 
103
- > **ℹ️ Note**: `target: "esnext"` auto-includes the latest standard libs, which several Unicorn rules require. Without it, some rules may suggest APIs that TypeScript doesn't recognize as built-in.
104
-
105
102
  ## Prettier
106
103
 
107
104
  This config handles **TypeScript formatting via ESLint**. Prettier should only be used for **HTML templates**.
package/index.js CHANGED
@@ -285,6 +285,8 @@ export default [
285
285
  'unicorn/prefer-await': 'off',
286
286
  'unicorn/prefer-includes-over-repeated-comparisons': ['error', { minimumComparisons: 6 }],
287
287
  'unicorn/prefer-split-limit': 'off',
288
+ 'unicorn/prefer-temporal': 'off',
289
+ 'unicorn/prefer-top-level-await': 'off',
288
290
  'unicorn/switch-case-braces': ['error', 'avoid'],
289
291
  'unicorn/try-complexity': ['error', { max: 5 }],
290
292
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-angular-strict",
3
- "version": "22.0.15",
3
+ "version": "22.0.16",
4
4
  "description": "Modern ESLint configuration with strict rules for Angular development.",
5
5
  "keywords": [
6
6
  "angular",