-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
100 lines (100 loc) · 2.29 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
module.exports = {
root: true,
env: {
node: true,
},
extends: [
'plugin:vue/vue3-recommended',
'eslint:recommended',
'@vue/typescript/recommended',
'@vue/airbnb',
'@vue/prettier',
'@vue/prettier/@typescript-eslint',
],
parserOptions: {
ecmaVersion: 2020,
parser: '@typescript-eslint/parser',
},
rules: {
'import/no-cycle': [
2,
{
maxDepth: 1,
},
],
'import/no-dynamic-require': 'off',
'import/no-extraneous-dependencies': 'off',
'no-console': 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-plusplus': [
'error',
{
allowForLoopAfterthoughts: true,
},
],
'no-restricted-syntax': 'off',
'object-shorthand': [
'error',
'always',
{
avoidExplicitReturnArrows: true,
},
],
'vue/html-closing-bracket-newline': [
'error',
{
multiline: 'always',
singleline: 'never',
},
],
'vue/html-self-closing': [
'error',
{
html: {
component: 'always',
normal: 'always',
void: 'always',
},
math: 'always',
svg: 'always',
},
],
'vue/new-line-between-multi-line-property': 'error',
'vue/no-duplicate-attr-inheritance': 'error',
'vue/no-multiple-objects-in-class': 'error',
'vue/no-parsing-error': [
2,
{
'invalid-first-character-of-tag-name': false,
},
],
'vue/no-potential-component-option-typo': 'error',
'vue/no-template-target-blank': 'error',
'vue/no-unused-properties': [
'warn',
{
groups: ['props', 'data', 'computed', 'methods', 'setup'],
},
],
'vue/no-useless-mustaches': 'error',
'vue/no-useless-v-bind': 'error',
'vue/padding-line-between-blocks': 'error',
'vue/v-for-delimiter-style': ['error', 'of'],
'@typescript-eslint/no-unused-vars': 'error',
'no-unused-vars': 'off',
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': ['error'],
},
overrides: [
{
files: ['**/__tests__/*.{j,t}s?(x)', '**/tests/unit/**/*.spec.{j,t}s?(x)'],
env: {
jest: true,
},
},
{
files: ['*.html'],
processor: 'vue/.vue',
},
],
}