-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
42 lines (42 loc) · 1.09 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
module.exports = {
root: true,
env: {
browser: true,
node: true,
},
parserOptions: {
parser: '@babel/eslint-parser',
requireConfigFile: false,
},
extends: [
'plugin:vue/recommended',
'eslint:recommended',
],
plugins: [
],
rules: {
'semi': ['error', 'always'],
'indent': ['error', 4, {'SwitchCase': 1}],
'no-console': 'warn',
'comma-dangle': ['error', 'always-multiline'],
'quotes': ['error', 'single', { 'avoidEscape': true }],
'vue/comma-dangle': ['error', 'always-multiline'],
'vue/script-indent': ['error', 4, {'baseIndent': 1, 'switchCase': 1}],
'vue/html-indent': ['error', 4],
'vue/max-attributes-per-line': ['error', {'singleline': 2}],
'vue/match-component-file-name': ['error', {
'extensions': ['vue'],
}],
},
overrides: [
{
'files': ['*.vue'],
'rules': {
'indent': 'off',
},
},
],
'globals': {
'Vue': 'readonly',
},
};