generated from codexlin/vue3.3-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy patheslint.config.js
99 lines (97 loc) · 2.75 KB
/
eslint.config.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
// import js from '@eslint/js'
import eslintConfigPrettier from 'eslint-config-prettier'
import eslintPluginImportX from 'eslint-plugin-import-x'
import eslintPluginPrettier from 'eslint-plugin-prettier/recommended'
import eslintPluginVue from 'eslint-plugin-vue'
import ts from 'typescript-eslint'
import fs from 'node:fs'
import { fileURLToPath, URL } from 'node:url'
const autoImportPath = fileURLToPath(new URL('./.eslintrc-auto-import.json', import.meta.url))
const eslintrcAutoImport = JSON.parse(fs.readFileSync(autoImportPath, 'utf8'))
const tsEslint = ts.config(...ts.configs.recommended).map((config) => ({
...config,
languageOptions: {
...config.languageOptions,
parserOptions: {
parser: '@typescript-eslint/parser'
}
}
}))
const vueEslint = eslintPluginVue.configs['flat/recommended']
export default [
{
plugins: {
'import-x': eslintPluginImportX
}
},
...tsEslint,
...vueEslint,
// js.configs.recommended,
{
...eslintPluginPrettier,
rules: {
...eslintPluginPrettier.rules,
...eslintConfigPrettier.rules
}
},
{
// 这里是项目整体的 rule 配置
files: ['src/**/*.{js,ts,jsx,tsx,vue}'],
rules: {
// 0 off 1 warn 2 error 强制标签执行自动关闭
'vue/script-setup-uses-vars': 2,
'vue/v-on-event-hyphenation': [
1,
'always',
{
autofix: true
}
],
'vue/html-self-closing': [
2,
{
html: {
void: 'any',
normal: 'always',
component: 'always'
},
svg: 'always',
math: 'always'
}
],
'vue/attribute-hyphenation': 0,
'vue/singleline-html-element-content-newline': 0,
'vue/multi-word-component-names': [
2,
{
ignores: ['index'] // 忽略 index 命名,一般表示页面
}
],
'@typescript-eslint/no-explicit-any': 0, // 允许使用 any 类型
'@typescript-eslint/no-unused-vars': 0,
'@typescript-eslint/no-unused-expressions': ['error', { allowShortCircuit: true, allowTernary: true }],
'array-callback-return': 'error',
'sort-imports': 'off',
'import-x/order': [
'error',
{
groups: ['external', 'builtin', 'internal', 'type', 'parent', 'object', 'sibling', 'index']
}
],
'import-x/no-cycle': 'error', // 禁止循环引用 暂不支持
'import-x/no-self-import': 'error', // 禁止自引用 暂不支持
'no-async-promise-executor': 'off'
},
languageOptions: {
parserOptions: {
ecmaFeatures: {
jsx: true
}
},
...eslintrcAutoImport
}
},
{
ignores: ['node_modules/', 'dist/', 'public/', 'src/assets/', 'tests/']
}
]