-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.js
84 lines (84 loc) · 2.13 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
module.exports = {
root: true,
extends: ['airbnb-base', 'eslint:recommended', 'plugin:prettier/recommended'],
plugins: ['node', 'promise'],
parserOptions: {
ecmaFeatures: {
impliedStrict: true,
},
ecmaVersion: 9,
sourceType: 'script',
},
env: {
node: true,
'shared-node-browser': true,
},
rules: {
'arrow-parens': 'off', // prettier only support always or avoid
'class-methods-use-this': 'off',
curly: ['error', 'all'], // override airbnb's multi-line
'import/extensions': [
'error',
'always',
{
js: 'never',
},
],
'import/no-extraneous-dependencies': [
'error',
{
devDependencies: ['**/*.config.js'],
},
],
'no-console': 'off',
'no-mixed-operators': 'off', // trust prettier
'no-multiple-empty-lines': 'off', // trust prettier
'no-use-before-define': ['error', { functions: false }],
'no-plusplus': 'off', // just make sensible use of ++ and --
'padding-line-between-statements': [
'error',
{ blankLine: 'never', prev: '*', next: ['case', 'default'] },
{ blankLine: 'never', prev: ['case', 'default'], next: '*' },
{
blankLine: 'always',
prev: '*',
next: [
'block',
'block-like',
'class',
'const',
'directive',
'export',
'function',
'import',
'let',
'return',
'var',
],
},
{
blankLine: 'always',
prev: [
'block',
'block-like',
'class',
'const',
'directive',
'export',
'function',
'import',
'let',
'return',
'var',
],
next: '*',
},
{ blankLine: 'any', prev: 'const', next: 'const' },
{ blankLine: 'any', prev: 'directive', next: 'directive' },
{ blankLine: 'any', prev: 'export', next: 'export' },
{ blankLine: 'any', prev: 'import', next: 'import' },
{ blankLine: 'any', prev: 'let', next: 'let' },
{ blankLine: 'any', prev: 'var', next: 'var' },
],
},
}