-
Notifications
You must be signed in to change notification settings - Fork 15
/
eslint.config.mjs
163 lines (154 loc) · 5.52 KB
/
eslint.config.mjs
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
import pluginJs from '@eslint/js';
import checkFile from 'eslint-plugin-check-file';
import sonarjs from 'eslint-plugin-sonarjs';
import globals from 'globals';
import tseslint from 'typescript-eslint';
let env = 'unknown';
if (process.env.CI != null) {
env = 'ci';
} else if (process.env.NX_TASK_TARGET_PROJECT != null) {
env = 'nx-task';
}
export const testDefaults = {
files: ['**/*.test.ts', '**/*.test.tsx', '**/*.test.js', '**/*.test.jsx'],
languageOptions: {
globals: {
...globals.jest,
},
},
rules: {
'no-console': 0,
'@typescript-eslint/no-for-in-array': 0,
'@typescript-eslint/no-unsafe-assignment': 0,
'@typescript-eslint/no-unsafe-argument': 0,
'@typescript-eslint/no-unsafe-call': 0,
'@typescript-eslint/no-unsafe-member-access': 0,
'sonarjs/slow-regex': 0,
'sonarjs/no-duplicate-string': 0,
'sonarjs/no-nested-functions': 0,
'sonarjs/use-type-alias': 0,
'sonarjs/pseudo-random': 0,
},
};
export const sonarjsConfig = [
sonarjs.configs.recommended,
{
files: ['**/*.{js,ts}'],
rules: {
// Show this warning in IDE and PRs, but not when running at command line (to reduce clutter).
'sonarjs/cognitive-complexity': env !== 'nx-task' ? 1 : 0,
'sonarjs/no-duplicate-string': env !== 'nx-task' ? 1 : 0,
'sonarjs/sonar-max-params': env !== 'nx-task' ? 1 : 0,
'sonarjs/todo-tag': env !== 'nx-task' ? 1 : 0,
'sonarjs/fixme-tag': env !== 'nx-task' ? 1 : 0,
// We don't really care about these.
'sonarjs/no-selector-parameter': 0,
'sonarjs/redundant-type-aliases': 0,
'sonarjs/new-cap': 0,
// For review - new for eslint 9.
'sonarjs/no-redeclare': 1,
'sonarjs/public-static-readonly': 1,
'sonarjs/updated-loop-counter': 1,
'sonarjs/function-return-type': 1,
// Duplicates @typescript-eslint
'sonarjs/sonar-no-unused-vars': 0,
'sonarjs/no-redundant-type-constituents': 0,
'sonarjs/sonar-prefer-optional-chain': 0,
'sonarjs/no-base-to-string': 0,
'sonarjs/no-misused-promises': 0,
},
},
];
/** @type {import('eslint').Linter.Config[]} */
export default [
{ files: ['**/*.{js,mjs,cjs,ts}'], linterOptions: { reportUnusedDisableDirectives: 'error' } },
{
ignores: [
'**/node_modules',
'**/dist',
'**/typings',
'**/eslint.config.mjs',
'**/jest.*.{cjs,js}',
'.dependency-cruiser.js',
],
},
pluginJs.configs.recommended,
...tseslint.configs.recommendedTypeChecked,
{
languageOptions: {
globals: globals.browser,
parserOptions: {
// projectService: true,
project: './tsconfig.lint.json',
},
},
},
{
files: ['**/src/**/*'],
ignores: ['**/src/pages/**'], // Ignore astro pages
plugins: {
'check-file': checkFile,
},
rules: {
'check-file/folder-naming-convention': [
'error',
{
'src/**/!(__mocks__)/': 'KEBAB_CASE',
},
],
},
},
{
files: ['**/*.{js,ts,tsx}'],
rules: {
'no-lonely-if': 2,
'no-negated-condition': 1,
'no-nested-ternary': 2,
'no-unneeded-ternary': 2,
'no-eval': 2,
'no-console': 2,
'no-unused-vars': 0,
'no-case-declarations': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/consistent-type-imports': 0,
'@typescript-eslint/no-redundant-type-constituents': 1,
'@typescript-eslint/no-floating-promises': 2,
'@typescript-eslint/no-implied-eval': 2,
'@typescript-eslint/no-shadow': 2,
'@typescript-eslint/prefer-as-const': 2,
'@typescript-eslint/prefer-nullish-coalescing': 2,
'@typescript-eslint/prefer-optional-chain': 2,
'@typescript-eslint/prefer-readonly': 2,
'@typescript-eslint/prefer-ts-expect-error': 1,
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }],
'@typescript-eslint/no-for-in-array': 2,
'@typescript-eslint/restrict-template-expressions': [
'error',
{
allowArray: true,
allowBoolean: true,
allowNumber: true,
allow: ['Date'],
},
],
'@typescript-eslint/no-empty-object-type': ['error', { allowInterfaces: 'always' }],
// We don't really care about these.
'@typescript-eslint/no-unsafe-return': 0,
'@typescript-eslint/no-unsafe-call': 0,
'@typescript-eslint/no-unsafe-assignment': 0,
'@typescript-eslint/no-unsafe-function-type': 0,
'@typescript-eslint/no-unsafe-argument': 0,
'@typescript-eslint/no-unsafe-member-access': 0,
'@typescript-eslint/no-base-to-string': 0,
'@typescript-eslint/no-this-alias': 0,
},
},
testDefaults,
{
files: ['packages/*/tools/*.ts'],
rules: {
'@typescript-eslint/consistent-type-imports': 0,
'no-console': 0,
},
},
];