-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.eslintrc.js
28 lines (28 loc) · 871 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
module.exports = {
root: true,
env: {
node: true,
},
extends: [
'plugin:vue/recommended',
'@vue/airbnb',
],
parserOptions: {
ecmaVersion: 2020,
},
ignorePatterns: [
'public/', 'dist/',
],
rules: {
'no-console': 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-shadow': ['error', { allow: ['state'] }], // vuex exception
'max-len': 'off',
'consistent-return': 'off',
'no-multiple-empty-lines': ['error', { max: 2, maxEOF: 1 }],
'no-underscore-dangle': ['error', { allow: ['_vm'] }], // vuex exception
'no-mixed-operators': ['warn', { allowSamePrecedence: true }],
'vue/max-attributes-per-line': ['error', { singleline: 3, multiline: { max: 1, allowFirstLine: false } }],
'object-property-newline': ['warn', { allowMultiplePropertiesPerLine: true }],
},
};