-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
126 lines (126 loc) · 3.08 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/**
* .eslint.js
*
* ESLint configuration file.
*/
module.exports = {
root: true,
env: {
node: true
},
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser'
},
plugins: ['vue', 'prettier'],
extends: [
'plugin:@typescript-eslint/recommended',
'eslint:recommended',
'@vue/eslint-config-typescript',
'plugin:vue/vue3-recommended',
'prettier',
'plugin:vuetify/base'
],
rules: {
'vue/multi-word-component-names': 'off',
'prettier/prettier': ['error'],
// Note: you must disable the base rule as it can report incorrect errors
// Bye bye useless characters
// semi: ['error', 'never'],
// '@typescript-eslint/semi': ['error', 'never'],
// // "vue/multiline-"
// 'vue/singleline-html-element-content-newline': [
// 'error',
// {
// ignoreWhenNoAttributes: false,
// ignoreWhenEmpty: true,
// ignores: ['pre', 'textarea', 'v-icon'],
// externalIgnores: []
// }
// ],
'vue/html-self-closing': [
'error',
{
html: {
void: 'always',
normal: 'always',
component: 'always'
},
svg: 'always',
math: 'always'
}
],
// // Enforce certain multiline behavior
// 'vue/multiline-html-element-content-newline': [
// 'error',
// {
// ignoreWhenEmpty: true,
// ignores: ['pre', 'textarea'],
// allowEmptyLines: false
// }
// ],
// // Clear empty lines proactively, is very rough
// 'no-multiple-empty-lines': [
// 'warn',
// {
// max: 1
// }
// ],
// // This rule is left like the default, just for showing why formatting is the way it is
// 'vue/html-indent': [
// 'error',
// 2,
// {
// attribute: 1,
// baseIndent: 1,
// closeBracket: 0,
// alignAttributesVertically: true,
// ignores: []
// }
// ],
// 'vue/html-closing-bracket-newline': [
// 'error',
// {
// singleline: 'never',
// multiline: 'never',
// selfClosingTag: {
// singleline: 'never',
// multiline: 'never'
// }
// }
// ]
// 'vue/new-line-between-multi-line-property': [
// 'error',
// {
// minLineOfMultilineProperty: 2
// }
// ],
'vue/block-lang': [
'error',
{
script: {
lang: 'ts'
}
}
],
'vue/no-unused-vars': ['error', {}],
// // Throws an error ast undefined
// '@typescript-eslint/no-unused-vars': ['off'],
'vue/no-ref-object-reactivity-loss': ['error']
// "vue/no-undef-components": ["error", {
// "ignorePatterns": []
// }],
// 'vue/require-typed-object-prop': 'error',
// 'vue/valid-v-on': [
// 'error',
// {
// modifiers: []
// }
// ],
// Let prettier fix this
// quotes: ['error', 'single'],
// '@typescript-eslint/indent': ['error', 2],
// // {var:val} in f.e. template activator
// 'vue/object-curly-spacing': 'error',
}
}