-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy patheslint.config.js
58 lines (57 loc) · 1.49 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
57
58
const js = require('@eslint/js');
const google = require('eslint-config-google');
const globals = require('globals');
const babelParser = require('@babel/eslint-parser');
module.exports = [
js.configs.recommended,
google,
{
languageOptions: {
ecmaVersion: 2021,
sourceType: 'commonjs',
globals: {
...globals.node,
},
parser: babelParser,
parserOptions: {
sourceType: 'script',
ecmaVersion: 2021,
},
},
rules: {
quotes: [
'error',
'single',
{
allowTemplateLiterals: true,
},
],
'prefer-arrow-callback': ['error'],
'object-shorthand': ['error', 'always'],
'quote-props': ['error', 'as-needed'],
'object-curly-spacing': ['error', 'always'],
'max-len': ['error',
{ code: 133,
ignoreTrailingComments: true,
ignoreComments: true,
ignoreUrls: true,
ignoreStrings: true,
ignoreTemplateLiterals: true,
ignoreRegExpLiterals: true,
}],
'require-jsdoc': ['off'],
'valid-jsdoc': ['off'],
'no-array-constructor': ['off'],
'no-caller': ['off'],
'prefer-promise-reject-errors': ['off'],
'guard-for-in': ['off'],
'padded-blocks': ['off'],
'new-cap': ['off'],
camelcase: ['off'],
eqeqeq: ['error', 'always'],
},
},
{
ignores: ['trade/settings/', 'trade/tests/', 'trade/cs/test/', 'trade/cs/web_legacy/', '*.spec.js'],
},
];