-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy path.eslintrc.js
33 lines (33 loc) · 846 Bytes
/
.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
module.exports = {
root: true,
env: {
node: true,
},
extends: [
'plugin:vue/essential',
'@vue/airbnb',
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'consistent-return': 'off',
'no-param-reassign': 'off',
'no-prototype-builtins': 'off',
camelcase: 'off',
'class-methods-use-this': 'off',
'no-plusplus': 'off',
'max-len': 'off',
'import/prefer-default-export': 'off',
radix: 'off',
'prefer-destructuring': 'off',
'no-mixed-operators': 'off',
'vue/require-v-for-key': 'off',
'import/extensions': 'off',
'linebreak-style': ['off'],
'object-shorthand': 'off',
'import/no-cycle': 'off'
},
parserOptions: {
parser: 'babel-eslint',
},
};