@igniteui/angular-templates 20.1.1463 → 20.1.1464

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.
@@ -3,34 +3,27 @@ import { FlatCompat } from '@eslint/eslintrc';
3
3
  const compat = new FlatCompat();
4
4
 
5
5
  export default [
6
- ...compat.extends('plugin:@angular-eslint/recommended', 'plugin:@angular-eslint/template/process-inline-templates'),
7
6
  {
8
7
  files: ['**/*.ts', '**/*.tsx'],
9
8
  languageOptions: {
9
+ parser: await import('@typescript-eslint/parser'),
10
10
  parserOptions: {
11
11
  project: ['tsconfig.json'],
12
12
  createDefaultProgram: true,
13
13
  },
14
14
  },
15
15
  rules: {
16
- '@angular-eslint/directive-selector': [
17
- 'error',
18
- { type: 'attribute', prefix: 'app', style: 'camelCase' },
19
- ],
20
- '@angular-eslint/component-selector': [
21
- 'error',
22
- { type: 'element', prefix: 'app', style: 'kebab-case' },
23
- ]
16
+ // Basic TypeScript linting without Angular template processing
24
17
  },
25
18
  },
26
- ...compat.extends('plugin:@angular-eslint/template/recommended'),
27
19
  {
28
20
  files: ['**/*.html'],
21
+ ...compat.extends('plugin:@angular-eslint/template/recommended')[0],
29
22
  rules: {
30
23
  eqeqeq: 'off'
31
24
  },
32
25
  },
33
26
  {
34
- ignores: ['projects/**/*']
27
+ ignores: ['projects/**/*', '**/*.spec.ts']
35
28
  },
36
29
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@igniteui/angular-templates",
3
- "version": "20.1.1463",
3
+ "version": "20.1.1464",
4
4
  "description": "Templates for Ignite UI for Angular projects and components",
5
5
  "repository": {
6
6
  "type": "git",
@@ -12,7 +12,7 @@
12
12
  "author": "Infragistics",
13
13
  "license": "MIT",
14
14
  "dependencies": {
15
- "@igniteui/cli-core": "~14.6.3",
15
+ "@igniteui/cli-core": "~14.6.4",
16
16
  "typescript": "~5.5.4"
17
17
  }
18
18
  }