-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patheslint.config.js
50 lines (48 loc) · 1.39 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
// @ts-check
import antfu from '@antfu/eslint-config'
export default antfu(
{
unocss: true,
formatters: true,
ignores: [
'dist/',
'public/',
'docs/.vuepress/.cache/',
'docs/.vuepress/.temp/',
'docs/.vuepress/public/',
'docs/.vuepress/public/assets/js/',
'docs/.vuepress/public/zhaobc.site/',
'**/*.d.ts',
],
},
{
rules: {
// override default options for rules from base configurations
'quote-props': ['warn', 'as-needed'],
'style/quote-props': ['warn', 'as-needed'],
// 'comma-dangle': ['warn', 'only-multiline'],
'comma-dangle': [
'error',
{
arrays: 'only-multiline',
objects: 'only-multiline',
imports: 'always-multiline',
exports: 'always-multiline',
functions: 'only-multiline',
},
],
'@typescript-eslint/comma-dangle': 'off',
'@typescript-eslint/brace-style': 'off',
'style/brace-style': ['warn', '1tbs'],
'arrow-parens': ['warn', 'as-needed'],
'style/arrow-parens': ['warn', 'as-needed'],
curly: ['warn', 'all'],
'no-unused-vars': ['warn'],
'vue/no-unused-refs': ['warn'],
'eslint-comments/no-unlimited-disable': ['warn'],
'style/max-statements-per-line': ['warn'],
'vue/no-irregular-whitespace': ['warn'],
'no-irregular-whitespace': ['warn'],
},
}
)