-
Notifications
You must be signed in to change notification settings - Fork 1
/
mixte.code-workspace
85 lines (81 loc) · 1.68 KB
/
mixte.code-workspace
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
{
"folders": [
{
"path": ".",
"name": "Mixte/Monorepo"
},
{
"path": "packages/mixte",
"name": "Mixte"
},
{
"path": "packages/use",
"name": "Use"
},
{
"path": "packages/components",
"name": "Components"
},
{
"path": "packages/validator",
"name": "Validator"
},
{
"path": "packages/snippets",
"name": "Snippets"
}
],
"settings": {
// 禁用默认格式化程序, 使用 ESlint 代替
"prettier.enable": false,
"editor.formatOnSave": false,
// 自动修复
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},
// 为所有支持的语言启用 ESlint
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"html",
"markdown",
"json",
"jsonc",
"yaml",
"toml",
"gql",
"graphql"
],
"eslint.quiet": true,
"files.exclude": {
"*.code-workspace": true,
"coverage": true,
"node_modules": true,
"packages/.vitepress/cache": true,
"packages/components": true,
"packages/mixte": true,
"packages/snippets": true,
"packages/use": true,
"packages/validator": true,
"src/auto-grid/**/*.d.ts": true
},
"unocss.autocomplete.matchType": "fuzzy",
"unocss.remToPxPreview": true,
"unocss.root": [
"packages"
],
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"antfu.iconify",
"antfu.unocss",
"csstools.postcss",
"syler.sass-indented"
]
}
}