-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
.eslintrc.js
41 lines (41 loc) · 1010 Bytes
/
.eslintrc.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
module.exports = {
env: {
commonjs: true,
es2021: true,
node: true,
},
extends: [
'eslint:recommended',
'google',
],
parser: '@babel/eslint-parser',
parserOptions: {
ecmaVersion: 12,
},
rules: {
quotes: ['error', 'single'],
'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'],
},
};