-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy patheslint.config.js
46 lines (41 loc) · 1.42 KB
/
eslint.config.js
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
import { common, jsonc, typescript, GLOB_TESTS } from 'eslint-config-jwalker'
/** @type {import('eslint').Linter.FlatConfig[]} */
export default [
...common,
...jsonc,
...typescript,
{ ignores: ['tsconfig.json'] },
{
rules: {
'no-undefined': 'off',
'sort-imports': 'off',
'max-statements': 'off',
'import/extensions': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'sonarjs/cognitive-complexity': 'off',
},
},
{
files: [...GLOB_TESTS, 'tests/*.ts', 'lib-testing/*.ts'],
rules: {
'no-undef': 'off',
'no-console': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/prefer-ts-expect-error': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/restrict-template-expressions': 'off',
},
},
{
files: ['**/*.d.ts'],
rules: {
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/consistent-type-definitions': 'off',
},
},
]