eslint-config-angular-strict 2.2.31 → 2.2.32

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 +6 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -11,7 +11,12 @@ export default [
11
11
  // Global plugins configuration for all files
12
12
  {
13
13
  ignores: ['dist/**', 'node_modules/**'],
14
- plugins: { '@stylistic': stylistic, '@typescript-eslint': tsEslint, 'import-x': importX },
14
+ plugins: {
15
+ '@angular-eslint/template': angularTemplate,
16
+ '@stylistic': stylistic,
17
+ '@typescript-eslint': tsEslint,
18
+ 'import-x': importX,
19
+ },
15
20
  },
16
21
 
17
22
  // Airbnb strict rules
@@ -124,7 +129,6 @@ export default [
124
129
  // HTML Template files configuration
125
130
  files: ['**/*.html'],
126
131
  languageOptions: { parser: angularTemplateParser },
127
- plugins: { '@angular-eslint/template': angularTemplate },
128
132
  rules: {
129
133
  '@angular-eslint/template/attributes-order': ['error', { alphabetical: true }],
130
134
  '@angular-eslint/template/banana-in-box': 'error',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-angular-strict",
3
- "version": "2.2.31",
3
+ "version": "2.2.32",
4
4
  "description": "Modern ESLint configuration with strict rules for Angular development.",
5
5
  "keywords": [
6
6
  "angular",