This repository was archived by the owner on Aug 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSmall-Utils.code-workspace
More file actions
82 lines (82 loc) · 1.8 KB
/
Small-Utils.code-workspace
File metadata and controls
82 lines (82 loc) · 1.8 KB
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
{
"folders": [
{
"path": "."
},
{
"path": "packages/utils",
"name": "Utils"
},
{
"path": "packages/vue-utils",
"name": "Vue Utils"
},
{
"path": "packages/node-utils",
"name": "Node Utils"
},
{
"path": "packages/validator",
"name": "Validator"
},
{
"path": "packages/components",
"name": "Components"
},
{
"path": "packages/composables",
"name": "Composables"
},
{
"path": "packages/vite-config",
"name": "Vite Config"
}
],
"settings": {
"editor.tabSize": 2,
"editor.detectIndentation": false,
"editor.codeActionsOnSave": {
"source.fixAll": false,
"source.fixAll.eslint": true,
"source.organizeImports": false
},
"editor.guides.bracketPairs": "active",
"editor.renderWhitespace": "boundary",
"editor.accessibilitySupport": "off",
"editor.cursorSmoothCaretAnimation": "on",
"breadcrumbs.enabled": false,
"files.exclude": {
"*.code-workspace": true,
"components": true,
"composables": true,
"node_modules": true,
"node-utils": true,
"packages/components": true,
"packages/composables": true,
"packages/node-utils": true,
"packages/utils": true,
"packages/validator": true,
"packages/vite-config": true,
"packages/vue-utils": true,
"utils": true,
"validator": true,
"vite-config": true,
"vue-utils": true
},
"typescript.tsdk": "node_modules/typescript/lib",
"prettier.enable": false,
"eslint.quiet": true,
"eslint.validate": [
"javascript",
"typescript",
"javascriptreact",
"typescriptreact",
"vue",
"html",
"markdown",
"json",
"jsonc",
"json5"
]
},
}