-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.web.js
45 lines (38 loc) · 1.09 KB
/
.eslintrc.web.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
require("@rushstack/eslint-patch/modern-module-resolution");
module.exports = {
root: true,
extends: [
"plugin:vue/vue3-essential",
"eslint:recommended",
"@vue/eslint-config-typescript/recommended",
"@vue/eslint-config-prettier",
],
env: {
"vue/setup-compiler-macros": true,
},
ignorePatterns: [
'_vite',
'.eslintrc.*',
'node_modules',
'dist',
'build',
],
rules:{
'prettier/prettier': ['warn', {
tabWidth: 4,
singleQuote: true,
endOfLine: 'auto',
printWidth: 110,
}],
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-floating-promises': 'off',
'@typescript-eslint/require-await': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
semi: ['error', 'always'],
quotes: ['warn', 'single', { allowTemplateLiterals: true }],
}
};