-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfodmapp.code-workspace
More file actions
54 lines (54 loc) · 1.64 KB
/
Copy pathfodmapp.code-workspace
File metadata and controls
54 lines (54 loc) · 1.64 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
{
"folders": [
{
"name": "fodmapp",
"path": ".",
},
],
"settings": {
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
"npm.packageManager": "pnpm",
"files.associations": {
"*.css": "tailwindcss",
"turbo.json": "jsonc",
},
"editor.quickSuggestions": {
"strings": "on",
},
"tailwindCSS.classFunctions": ["cn", "cva", "clsx"],
"tailwindCSS.experimental.configFile": "packages/tailwind-config/shared-styles.css",
"tailwindCSS.hovers": true,
"tailwindCSS.suggestions": true,
"tailwindCSS.codeActions": true,
// Editor Config
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.formatDocument": "always",
"source.addMissingImports": "always",
// Keep import/export ordering deterministic via ESLint simple-import-sort.
// TypeScript organizeImports can fight with that order on manual save.
"source.organizeImports": "never",
"source.fixAll.eslint": "always",
"source.fixAll.stylelint": "explicit",
},
"[typescript][javascript][typescriptreact][javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
},
},
"extensions": {
"recommendations": [
"bradlc.vscode-tailwindcss",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"csstools.postcss",
"ms-playwright.playwright",
"ms-python.python",
"eamodio.gitlens",
"github.vscode-github-actions",
"yoavbls.pretty-ts-errors",
],
},
}