-
Notifications
You must be signed in to change notification settings - Fork 10
/
.eslintrc.js
69 lines (69 loc) · 1.48 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
module.exports = {
root: true,
parser: 'babel-eslint',
parserOptions: {
sourceType: 'module',
},
env: {
browser: true,
webextensions: true,
},
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: {
'implicit-arrow-linebreak': 'off',
'arrow-parens': 'off', // FIXME jsPrettier must fix this and then we can remove the rule again
indent: [2, 'tab', { SwitchCase: 1 }], // indent with tabs
'no-tabs': 'off',
'no-plusplus': 'off',
'no-underscore-dangle': 'off',
'function-paren-newline': 'off',
'comma-dangle': [
'error',
{
functions: 'never',
arrays: 'always-multiline',
objects: 'always-multiline',
},
],
'import/prefer-default-export': 'off',
// don't require .vue extension when importing
'import/extensions': [
'error',
'always',
{
js: 'never',
vue: 'never',
},
],
'comma-dangle': [
'error',
{
arrays: 'always-multiline',
objects: 'always-multiline',
imports: 'always-multiline',
exports: 'always-multiline',
functions: 'ignore',
},
],
// allow optionalDependencies
'import/no-extraneous-dependencies': [
'error',
{
optionalDependencies: ['test/unit/index.js'],
},
],
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
},
};