-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
43 lines (43 loc) · 939 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
34
35
36
37
38
39
40
41
42
43
module.exports = {
root: true,
env: {
node: true,
es6: true,
},
extends: ['plugin:vue/essential', '@vue/airbnb'],
parserOptions: {
parser: 'babel-eslint',
ecmaVersion: 2020,
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'vue/require-default-prop': 0,
'vue/require-prop-types': 0,
'vue/no-v-html': 0,
'max-len': 0,
'vue/html-self-closing': [
'error',
{
html: {
void: 'always',
normal: 'never',
component: 'any',
},
},
],
'vue/max-attributes-per-line': [
'error',
{
singleline: 4,
multiline: {
max: 1,
allowFirstLine: false,
},
},
],
'object-curly-newline': 0,
'indent': ['error', 2],
'vue/html-indent': ['error', 2],
},
};