forked from sienori/simple-translate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
47 lines (44 loc) · 1.18 KB
/
.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
42
43
44
45
46
47
module.exports = {
root: true,
parser: 'babel-eslint',
plugins: ['node', 'promise', 'import'],
extends: ['airbnb-base'],
rules: {
// base
'max-len': ['error', { code: 140 }],
indent: ['error', 2],
semi: ['error', 'always'],
quotes: ['error', 'single'],
'comma-dangle': ['error', 'always-multiline'],
'object-curly-spacing': ['error', 'always'],
'arrow-parens': ['error', 'always'],
'linebreak-style': ['error', 'unix'],
'operator-linebreak': ['error', 'before'],
'no-underscore-dangle': [
'error',
{
allow: ['_id', '_'],
},
],
// plain
radix: ['error', 'as-needed'],
'no-debugger': 'error',
'no-console': 'error',
'no-new': 'off',
'no-continue': 'off',
'no-await-in-loop': 'off',
'no-unused-vars': 'warn',
// safe
'prefer-destructuring': 'off',
'no-restricted-syntax': 'warn',
'class-methods-use-this': 'off',
'ts-nocheck': 'off',
// miss safe
'no-param-reassign': 'off',
'import/no-extraneous-dependencies': 'off',
'import/no-dynamic-require': 'off',
'import/no-cycle': 'off',
'global-require': 'off',
'max-classes-per-file': 'off',
},
}