-
Notifications
You must be signed in to change notification settings - Fork 97
/
.eslintrc.js
59 lines (59 loc) · 1.49 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
module.exports = {
root: true,
parser: 'babel-eslint',
parserOptions: {
sourceType: 'module'
},
env: {
'browser': true,
'node': true
},
parserOptions: {
'ecmaVersion': 6
},
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
extends: 'airbnb-base',
// required to lint *.vue files
plugins: [
'html'
],
// check if imports actually resolve
'settings': {
'import/resolver': {
'webpack': {
'config': 'build/webpack.base.conf.js'
}
}
},
// add your custom rules here
'rules': {
// don't require .vue extension when importing
'import/extensions': ['error', 'always', {
'js': 'never',
'vue': 'never'
}],
// allow paren-less arrow functions
'arrow-parens': ['error', 'as-needed'],
'arrow-body-style': ['error', 'as-needed'],
'arrow-spacing': [2, { 'before': true, 'after': true }],
// allow async-await
'generator-star-spacing': 0,
'global-require': 0,
'import/no-dynamic-require': 0,
'no-param-reassign': ['error', { 'props': false }],
// allow console
'no-console': 0,
// allow no tailling comma-dangle
'comma-dangle': 0,
'linebreak-style': 0,
'prefer-template': 0,
'no-plusplus': 0,
'max-len': 0,
'object-shorthand': 0,
'no-mixed-operators': 0,
'guard-for-in': 0,
'no-restricted-syntax': 0,
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
}
}