-
-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy patheslint.config.js
More file actions
70 lines (69 loc) · 1.96 KB
/
Copy patheslint.config.js
File metadata and controls
70 lines (69 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
const eslint = require('@eslint/js');
const tseslint = require('typescript-eslint');
const angular = require('angular-eslint');
module.exports = tseslint.config(
{
ignores: ['dist/**', 'coverage/**', 'node_modules/**'],
},
{
files: ['**/*.ts'],
extends: [
eslint.configs.recommended,
...tseslint.configs.recommended,
...angular.configs.tsRecommended,
],
processor: angular.processInlineTemplates,
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-namespace': 'off',
'@typescript-eslint/no-unsafe-function-type': 'off',
'@angular-eslint/prefer-inject': 'off',
'@angular-eslint/prefer-standalone': 'off',
'no-async-promise-executor': 'off',
},
},
{
files: ['projects/plotly/**/*.ts'],
rules: {
'@angular-eslint/component-selector': [
'error',
{ type: 'element', prefix: 'plotly', style: 'kebab-case' },
],
},
},
{
files: ['projects/plotly/src/lib/plotly.component.ts'],
rules: {
// Compatibility outputs. `click` is already deprecated; both names are
// retained on supported compatibility lines to avoid an API break.
'@angular-eslint/no-output-native': 'off',
},
},
{
files: [
'projects/plotly/src/lib/plotly.component.ts',
'projects/demo_app/src/app/app.component.ts',
],
rules: {
// Angular 22 migrated existing components to Eager to preserve their
// pre-v22 behavior. An OnPush conversion is a separate breaking change.
'@angular-eslint/prefer-on-push-component-change-detection': 'off',
},
},
{
files: ['projects/demo_app/**/*.ts'],
rules: {
'@angular-eslint/component-selector': [
'error',
{ type: 'element', prefix: 'app', style: 'kebab-case' },
],
},
},
{
files: ['**/*.html'],
extends: [
...angular.configs.templateRecommended,
...angular.configs.templateAccessibility,
],
},
);