-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
75 lines (75 loc) · 2.26 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
module.exports = {
extends: [
// add more generic rule sets here, such as:
'eslint:recommended',
// 'plugin:vue/vue3-recommended',
'plugin:vue/recommended', // Use this if you are using Vue.js 2.x.
],
plugins: ['import'],
rules: {
// override/add rules settings here, such as:
// 'prettier/prettier': 'error',
'import/order': [
'error',
{
groups: ['builtin', 'external', 'internal', 'parent', 'sibling', 'index'],
'newlines-between': 'always',
alphabetize: {
order: 'asc',
caseInsensitive: true,
},
},
],
'import/prefer-default-export': 'off',
curly: 'error',
'eol-last': 'error',
'id-length': 'error',
'no-duplicate-imports': 'error',
'no-trailing-spaces': 'error',
'no-multiple-empty-lines': ['error', { 'max': 1, 'maxEOF': 1 }],
'require-await': 'error',
'comma-dangle': [
'error',
{
arrays: 'always-multiline',
objects: 'always-multiline',
imports: 'always-multiline',
exports: 'always-multiline',
functions: 'never',
},
],
'quotes': ['error', 'single', { 'avoidEscape': true }],
'object-curly-spacing': ['error', 'always'],
'semi': ['error', 'always'],
'vue/no-unused-vars': 'error',
'vue/require-prop-types': 'warn',
'vue/html-indent': ['error', 4, {
'attribute': 1,
'baseIndent': 1,
'closeBracket': 0,
'alignAttributesVertically': true,
'ignores': [],
}],
'vue/html-closing-bracket-newline': ['error', {
'singleline': 'never',
'multiline': 'never',
}],
'vue/script-indent': ['error', 4, {
'baseIndent': 1,
'switchCase': 0,
'ignores': [],
}],
},
env: {
'browser': true,
'commonjs': true,
'es6': true,
'jquery': true,
},
globals: {
'Mousetrap': true,
'app': true,
'Vue': true,
'axios': true,
},
};