-
Notifications
You must be signed in to change notification settings - Fork 14
/
.eslintrc.js
71 lines (61 loc) · 1.96 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
module.exports = {
env: {
browser: true,
es2021: true,
},
parser: 'vue-eslint-parser',
extends: [
'airbnb-base',
'plugin:@typescript-eslint/recommended',
'plugin:vue/vue3-recommended',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:import/typescript',
],
parserOptions: {
parser: '@typescript-eslint/parser',
ecmaVersion: 2020,
sourceType: 'module',
},
rules: {
// ESLint -----------------------------------------------------------------
indent: ['error', 4], // compatibility with .editorconfig
'import/no-extraneous-dependencies': 'off', // allow packages in devDependencies
'max-len': [
'warn', {
code: 120,
ignoreComments: true,
ignoreTrailingComments: true,
ignoreUrls: true,
ignoreTemplateLiterals: true,
ignoreRegExpLiterals: true,
ignorePattern: '(class|d)=".+',
},
],
// Vue 3 ---------------------------------------------------------------
'vue/html-indent': ['warn', 4],
'vue/html-closing-bracket-newline': ['warn', {
multiline: 'never',
}],
'vue/max-len': ['warn', {
code: 120,
ignoreComments: true,
ignoreTrailingComments: true,
ignoreUrls: true,
ignoreTemplateLiterals: true,
ignoreRegExpLiterals: true,
ignoreHTMLAttributeValues: true,
ignoreHTMLTextContents: true,
}],
// Plugin Import ---------------------------------------------------------
'import/no-unresolved': 'error',
'import/extensions': ['error', 'never', { vue: 'always' }],
},
settings: {
'import/resolver': {
typescript: {
alwaysTryTypes: true,
},
},
},
};