-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
53 lines (50 loc) · 1.56 KB
/
settings.json
File metadata and controls
53 lines (50 loc) · 1.56 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
{
// General editor settings
"editor.minimap.enabled": false,
"editor.wordWrap": "on",
"window.commandCenter": true,
"editor.colorDecorators": true,
// Markdownlint: Markdown linting (matches CodeRabbit)
"[markdown]": {
"editor.codeActionsOnSave": {
"source.fixAll.markdownlint": "explicit"
}
},
// TAILWIND
"files.associations": { "*.css": "tailwindcss" }, // recommended by tailwind
"editor.quickSuggestions": { "strings": "on" }, // recommended by tailwind
"files.exclude": {
"**/.next": true, // Hide Next.js build output
"**/node_modules": true, // Hide npm installed dependencies
"next-env.d.ts": true, // Hide Next.js file (uneditable)
"tsconfig.tsbuildinfo": true // Hide TypeScript build info file
},
// Tailwind CSS IntelliSense
"tailwindCSS.experimental.configFile": "app/globals.css", // required
"tailwindCSS.validate": true, // linting
// Biome: formatting, linting, import organisation
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.biome": "explicit",
"source.organizeImports.biome": "explicit"
},
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[typescriptreact]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[javascript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[javascriptreact]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[css]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[html]": {
"editor.defaultFormatter": "biomejs.biome"
}
}