-
-
Notifications
You must be signed in to change notification settings - Fork 231
/
eslint.config.js
43 lines (41 loc) · 1.07 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
import globals from 'globals'
import js from '@eslint/js'
export default [
js.configs.recommended,
{
languageOptions: {
ecmaVersion: 2022,
sourceType: 'module',
globals: {
//...globals.browser,
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
$: 'readonly',
mocha: 'readonly',
Mocha: 'readonly',
describe: 'readonly',
it: 'readonly',
chai: 'readonly',
},
},
rules: {
quotes: ['error', 'single'],
indent: ['error', 2],
semi: ['error', 'never'],
curly: ['error', 'multi', 'consistent'],
'space-before-function-paren': ['error', 'never'],
'brace-style': ['error', '1tbs'],
'block-spacing': ['error', 'always'],
'object-curly-newline': ['error', { consistent: true }],
'prefer-const': 1,
'no-mixed-operators': 0,
'no-empty': 0,
'no-undef': 0,
'no-unreachable': 0,
'no-case-declarations': 0,
'no-unused-vars': 0,
'no-dupe-else-if': 0,
'no-constant-condition': 0,
},
},
]