-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
eslint.config.js
38 lines (37 loc) · 996 Bytes
/
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
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,
{
ignores: ['jest.config.js']
},
{
rules: {
quotes: [
'error',
'single',
{
avoidEscape: true,
allowTemplateLiterals: true
}
],
indent: ['error', 4, { SwitchCase: 1 }],
semi: ['error', 'always'],
'no-trailing-spaces': ['error', { skipBlankLines: true }],
'@typescript-eslint/no-var-requires': 'off'
}
}
];