-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvscode.code-workspace
More file actions
76 lines (76 loc) · 2.42 KB
/
vscode.code-workspace
File metadata and controls
76 lines (76 loc) · 2.42 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
// Reference: https://medium.com/rewrite-tech/visual-studio-code-tips-for-monorepo-development-with-multi-root-workspaces-and-extension-6b69420ecd12
{
"folders": [
{
"name": "example-bot",
"path": "apps/example-bot"
},
{
"name": "discordjs-react",
"path": "packages/discordjs-react"
},
{
"name": "root",
"path": "./"
},
],
"settings": {
"editor.tabSize": 2,
// Disable these to view "useless" files
// "files.exclude": {
// "**/node_modules": true,
// "**/coverage/": true,
// "**/.next": true,
// "**/.turbo": true,
// "**/dist": true,
// },
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.wordWrap": "on",
"eslint.validate": [
"javascript",
"javascriptreact",
"html",
"typescriptreact",
"typescript"
],
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"eslint.format.enable": true,
"eslint.alwaysShowStatus": true,
"[typescript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.preferences.importModuleSpecifier": "non-relative",
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.quickSuggestions": {
"strings": true
},
"search.useParentIgnoreFiles": true,
},
"extensions": {
"recommendations": [
"vscode-icons-team.vscode-icons",
"ms-vscode-remote.vscode-remote-extensionpack",
"orta.vscode-twoslash-queries",
"dbaeumer.vscode-eslint",
"GitHub.copilot",
"eamodio.gitlens",
"Prisma.prisma",
"aaron-bond.better-comments",
"ZixuanChen.vitest-explorer",
"EditorConfig.EditorConfig",
"bradlc.vscode-tailwindcss",
"DavidAnson.vscode-markdownlint",
"Orta.vscode-jest",
"unifiedjs.vscode-mdx",
"usernamehw.errorlens"
]
},
}