-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
41 lines (37 loc) · 836 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
module.exports = {
root: true,
env: {
node: true
},
extends: [
'plugin:vue/vue3-essential',
'@vue/standard',
'@vue/typescript/recommended'
],
parserOptions: {
ecmaVersion: 2020
},
rules: {
'no-console': 'off',
'no-debugger': 'off',
'vue/multi-word-component-names': 'off',
'vuejs-accessibility/click-events-have-key-events': 'off',
'jsx-a11y/anchor-is-valid': 'off',
'vuejs-accessibility/anchor-has-content': 'off',
'import/extensions': 'off',
'import/no-extraneous-dependencies': 'off',
indent: 'off',
'no-param-reassign': 'off',
'template-curly-spacing': 'off',
'max-len': [
'error',
{
code: 600
}]
}
// extends: [
// 'plugin:vue/essential',
// '@vue/standard',
// '@vue/typescript/recommended'
// ]
}