-
-
Notifications
You must be signed in to change notification settings - Fork 213
Expand file tree
/
Copy pathsettings.json
More file actions
58 lines (58 loc) · 2.52 KB
/
settings.json
File metadata and controls
58 lines (58 loc) · 2.52 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
{
// ── Editor Defaults ────────────────────────────────────────────
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
// ── File Handling ──────────────────────────────────────────────
"files.eol": "\n",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/.git": true
},
// ── TypeScript ─────────────────────────────────────────────────
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
// ── Tailwind CSS ───────────────────────────────────────────────
"tailwindCSS.includeLanguages": {
"typescriptreact": "html"
},
"tailwindCSS.experimental.classRegex": [
[
"className\\s*=\\s*[\"']([^\"']*)[\"']",
"([^\"'\\s]*)"
]
],
// ── ESLint ─────────────────────────────────────────────────────
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
// ── Search ─────────────────────────────────────────────────────
"search.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/package-lock.json": true,
"**/playwright-report": true
},
// ── File Associations ──────────────────────────────────────────
"[markdown]": {
"editor.wordWrap": "on",
"files.trimTrailingWhitespace": false
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}