-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
eslint.config.js
56 lines (55 loc) · 1.47 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
47
48
49
50
51
52
53
54
55
56
const tseslint = require('typescript-eslint');
const js = require('@eslint/js');
const globals = require('globals');
module.exports = [
{
languageOptions: {
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
...globals.browser,
...globals.node,
...globals.es2020
}
}
},
js.configs.recommended,
...tseslint.configs.recommended,
{
rules: {
quotes: [
'error',
'single',
{
avoidEscape: true,
allowTemplateLiterals: true
}
],
indent: ['error', 4, { SwitchCase: 1 }],
semi: ['error', 'always'],
'no-trailing-spaces': ['error'],
'@typescript-eslint/no-duplicate-enum-values': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/no-unsafe-declaration-merging': 'off',
'@typescript-eslint/no-empty-object-type': 'off'
}
},
{
files: ['src/@utils/other.ts'],
rules: {
'@typescript-eslint/no-explicit-any': 'off'
}
},
{
files: ['tests/*.ts'],
rules: {
'@typescript-eslint/ban-ts-comment': 'off'
}
},
{
files: ['*.js'],
rules: {
'@typescript-eslint/no-require-imports': 'off'
}
}
];