-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy path.eslintrc.cjs
45 lines (45 loc) · 938 Bytes
/
.eslintrc.cjs
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
module.exports = {
'env': {
'browser': true,
'es2020': true,
},
'extends': [
'google',
],
'parserOptions': {
'ecmaVersion': 11,
'sourceType': 'module',
},
'rules': {
'max-len': [2, {'code': 120, 'ignoreUrls': true}],
'linebreak-style': 0,
'object-curly-spacing': 0,
'indent': 0,
'quotes': 0,
'require-jsdoc': 0,
'max-len': 0,
'comma-dangle': 0,
'camelcase': 0,
'valid-jsdoc': 0,
'eol-last': 0,
'semi': 0,
'no-trailing-spaces': 0,
'no-unused-vars': 0,
'spaced-comment': 0,
'arrow-parens': 0,
'quote-props': 0,
'no-var': 0,
'new-cap': 0,
'curly': 0,
'prefer-const': 0,
'padded-blocks': 0,
'brace-style': 0,
'space-before-function-paren': 0,
'keyword-spacing': 0,
'no-multi-spaces': 0,
'no-invalid-this': 0,
'no-multiple-empty-lines': 0,
'keyword-spacing': 0,
'guard-for-in': 0,
},
};