-
Notifications
You must be signed in to change notification settings - Fork 257
Expand file tree
/
Copy patheslint.config.js
More file actions
64 lines (62 loc) · 2.31 KB
/
Copy patheslint.config.js
File metadata and controls
64 lines (62 loc) · 2.31 KB
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
const stylistic = require('@stylistic/eslint-plugin')
const globals = require('globals')
module.exports = [
{
plugins: {
'@stylistic': stylistic,
},
languageOptions: {
ecmaVersion: 'latest',
sourceType: 'commonjs',
globals: {
...globals.browser,
...globals.commonjs,
...globals.mocha,
},
},
rules: {
'block-scoped-var': 'error',
'camelcase': 'off',
'class-methods-use-this': 'error',
'consistent-return': 'error',
'default-case': 'error',
'default-case-last': 'error',
'default-param-last': 'error',
'grouped-accessor-pairs': 'error',
'no-caller': 'error',
'no-console': 'error',
'no-empty-function': 'error',
'no-eval': 'error',
'no-labels': 'error',
'no-new': 'error',
'no-new-func': 'error',
'no-new-wrappers': 'error',
'no-script-url': 'error',
'no-self-compare': 'error',
'no-shadow': 'error',
'no-throw-literal': 'error',
'no-undefined': 'error',
'no-unreachable-loop': 'error',
'no-unused-expressions': 'off',
'no-useless-backreference': 'error',
'no-useless-concat': 'error',
'no-var': 'error',
'prefer-const': 'error',
'prefer-promise-reject-errors': 'error',
'require-atomic-updates': 'error',
'require-await': 'error',
'yoda': 'error',
// Stylistic rules moved out of ESLint core in v9 into @stylistic.
'@stylistic/array-bracket-spacing': 'error',
'@stylistic/block-spacing': 'error',
'@stylistic/brace-style': 'error',
'@stylistic/indent': ['error', 4, { SwitchCase: 0 }],
'@stylistic/linebreak-style': ['error', 'unix'],
'@stylistic/max-len': ['error', { code: 120 }],
'@stylistic/no-extra-parens': 'error',
'@stylistic/object-curly-spacing': ['error', 'always', { arraysInObjects: true }],
'@stylistic/quotes': ['error', 'single'],
'@stylistic/semi': ['error', 'never'],
},
},
]