-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtemplate-aio.code-workspace
More file actions
72 lines (72 loc) · 2.13 KB
/
Copy pathtemplate-aio.code-workspace
File metadata and controls
72 lines (72 loc) · 2.13 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
{
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"oxc.oxc-vscode",
"streetsidesoftware.code-spell-checker",
"TypeScriptTeam.native-preview",
],
},
"folders": [
{ "name": "root", "path": "." },
{ "path": "packages/css-reset" },
{ "path": "packages/dts" },
{ "path": "packages/tsconfig" },
{ "path": "packages/utils" },
{ "path": "packages/template-vite-react-19" },
{ "path": "packages/template-ts-lib" },
],
"settings": {
"[mdx]": {
"editor.codeActionsOnSave": ["source.fixAll.eslint", "source.formatDocument"],
},
"css.validate": false,
"editor.codeActionsOnSave": [
"source.removeUnusedImports",
"source.fixAll.eslint",
"source.formatDocument",
],
"editor.defaultFormatter": "oxc.oxc-vscode",
"editor.formatOnSave": true,
"eslint.rules.customizations": [
{ "fixable": true, "rule": "perfectionist/*", "severity": "off" },
{ "fixable": true, "rule": "style/*", "severity": "off" },
{ "fixable": true, "rule": "format/*", "severity": "off" },
{ "fixable": true, "rule": "*-indent", "severity": "off" },
{ "fixable": true, "rule": "*-spacing", "severity": "off" },
{ "fixable": true, "rule": "*-spaces", "severity": "off" },
{ "fixable": true, "rule": "*-order", "severity": "off" },
{ "fixable": true, "rule": "*-dangle", "severity": "off" },
{ "fixable": true, "rule": "*-newline", "severity": "off" },
{ "fixable": true, "rule": "*quotes", "severity": "off" },
{ "fixable": true, "rule": "*semi", "severity": "off" },
],
"eslint.useFlatConfig": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"html",
"markdown",
"json",
"jsonc",
"yaml",
"toml",
"xml",
"gql",
"graphql",
"astro",
"svelte",
"css",
"less",
"scss",
"pcss",
"postcss",
"mdx",
],
"typescript.experimental.useTsgo": true,
"typescript.native-preview.tsdk": "node_modules/@typescript/native-preview",
},
}