eslint-config-angular-strict 2.2.18 → 2.2.20

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 -12
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -10,11 +10,8 @@ import { configs, rules } from 'eslint-config-airbnb-extended';
10
10
  export default [
11
11
  // Global plugins configuration for all files
12
12
  {
13
- plugins: {
14
- '@stylistic': stylistic,
15
- '@typescript-eslint': tsEslint,
16
- 'import-x': importX,
17
- },
13
+ ignores: ['dist/**', 'node_modules/**'],
14
+ plugins: { '@stylistic': stylistic, '@typescript-eslint': tsEslint, 'import-x': importX },
18
15
  },
19
16
 
20
17
  // Airbnb strict rules
@@ -24,10 +21,7 @@ export default [
24
21
  {
25
22
  // TypeScript files configuration
26
23
  files: ['**/*.ts'],
27
- languageOptions: {
28
- parser: tsParser,
29
- parserOptions: { ecmaVersion: 'latest', project: './tsconfig.json', sourceType: 'module' },
30
- },
24
+ languageOptions: { parser: tsParser, parserOptions: { ecmaVersion: 'latest', project: './tsconfig.json', sourceType: 'module' } },
31
25
  plugins: { '@angular-eslint': angular },
32
26
  rules: {
33
27
  // Angular ESLint rules
@@ -94,9 +88,6 @@ export default [
94
88
  '@stylistic/no-extra-semi': 'error',
95
89
  '@stylistic/object-curly-spacing': ['error', 'always'],
96
90
  '@stylistic/padded-blocks': 'off',
97
- '@stylistic/quotes': ['error', 'single'],
98
- '@stylistic/semi': ['error', 'always'],
99
- '@stylistic/space-before-blocks': 'error',
100
91
 
101
92
  // Import rules
102
93
  'import-x/no-anonymous-default-export': 'error',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-angular-strict",
3
- "version": "2.2.18",
3
+ "version": "2.2.20",
4
4
  "description": "Modern ESLint configuration with strict rules for Angular development.",
5
5
  "keywords": [
6
6
  "angular",