-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy path.eslintrc.js
53 lines (52 loc) · 1.36 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
module.exports = {
root: true,
env: {
node: true,
},
extends: [
'plugin:vue/essential',
'@vue/airbnb',
],
parserOptions: {
parser: 'babel-eslint',
},
// add your custom rules here
rules: {
// don't require .vue extension when importing
'import/extensions': ['error', 'always', {
js: 'never',
vue: 'ignorePackages',
}],
// allow optionalDependencies
'import/no-extraneous-dependencies': ['error', {
optionalDependencies: ['test/unit/index.js'],
}],
// allow debugger during development
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'func-names': 0,
'comma-spacing': 0,
'space-infix-ops': 0,
'space-before-function-paren': 0,
'arrow-spacing': [1,{ before: true,after: true }],
'prefer-arrow-callback': 0,
'space-before-blocks': 0,
indent: 0,
'no-unused-vars': 0,
'no-multi-spaces': 0,
'prefer-template': 0,
'no-tabs': 0,
'spaced-comment': 0,
'max-len': 0,
'no-mixed-spaces-and-tabs': 0,
'linebreak-style': 0,
'global-require': 0,
'import/no-dynamic-require': 0,
'no-undef': 0,
allowForLoopAfterthoughts: true,
'no-param-reassign': 0,
'no-plusplus': 0,
'no-underscore-dangle': ['error', { allow: ['__INITIAL_STATE__'] }],
'no-prototype-builtins': 0,
},
};