-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Expand file tree
/
Copy patheslint.config.js
More file actions
103 lines (102 loc) · 3.4 KB
/
Copy patheslint.config.js
File metadata and controls
103 lines (102 loc) · 3.4 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
// @ts-check
const eslint = require('@eslint/js');
const { defineConfig } = require('eslint/config');
const tseslint = require('typescript-eslint');
const angular = require('angular-eslint');
const vitest = require('@vitest/eslint-plugin');
const eslintConfigPrettier = require('eslint-config-prettier/flat');
module.exports = defineConfig(
{
languageOptions: {
parserOptions: {
projectService: true,
},
},
},
{
ignores: [
'src/web/dist/**',
'src/web/types/api-const.ts',
'src/web/types/api-output.ts',
'src/web/types/api-request.ts',
],
},
{
files: ['**/*.ts'],
extends: [
eslint.configs.recommended,
...tseslint.configs.recommendedTypeChecked,
...tseslint.configs.stylisticTypeChecked,
...angular.configs.tsRecommended,
],
processor: angular.processInlineTemplates,
rules: {
'@typescript-eslint/no-unused-vars': [
'error',
{
args: 'all',
argsIgnorePattern: '^_',
caughtErrors: 'all',
caughtErrorsIgnorePattern: '^_',
destructuredArrayIgnorePattern: '^_',
varsIgnorePattern: '^_',
ignoreRestSiblings: true,
},
],
'@typescript-eslint/consistent-type-definitions': 'off',
'@angular-eslint/component-selector': [
'error',
{
type: 'element',
prefix: 'tm',
style: 'kebab-case',
},
],
'@angular-eslint/directive-selector': [
'error',
{
type: 'attribute',
prefix: 'tm',
style: 'camelCase',
},
],
'@typescript-eslint/no-deprecated': 'warn',
// The rules below are mostly stylistic rules that are deemed reasonable to be disabled.
// They can be re-enabled in the future if desired.
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/consistent-indexed-object-style': 'off',
'@typescript-eslint/consistent-generic-constructors': 'off',
// The rules below are temporarily disabled to allow gradual migration to the recommended ruleset.
// They should be re-enabled in the future.
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-floating-promises': 'off',
'@typescript-eslint/unbound-method': 'off',
'@typescript-eslint/no-misused-promises': 'off',
'@typescript-eslint/no-unsafe-enum-comparison': 'off',
'@typescript-eslint/prefer-promise-reject-errors': 'off',
},
},
{
files: ['**/*.spec.ts'],
extends: [vitest.configs['recommended']],
rules: {
// Add test file specific rules here if needed.
},
},
{
files: ['**/*.html'],
extends: [...angular.configs.templateRecommended, ...angular.configs.templateAccessibility],
rules: {
// The rules below are temporarily disabled to allow gradual migration to the recommended ruleset.
'@angular-eslint/template/label-has-associated-control': 'off',
'@angular-eslint/template/interactive-supports-focus': 'off',
'@angular-eslint/template/click-events-have-key-events': 'off',
'@angular-eslint/template/mouse-events-have-key-events': 'off',
},
},
eslintConfigPrettier,
);