-
-
Notifications
You must be signed in to change notification settings - Fork 858
Expand file tree
/
Copy pathsettings.json
More file actions
26 lines (26 loc) · 662 Bytes
/
settings.json
File metadata and controls
26 lines (26 loc) · 662 Bytes
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
{
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"[markdown]": {
"files.trimTrailingWhitespace": false
},
"[mdx]": {
"files.trimTrailingWhitespace": false,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"typescript.tsdk": "web/node_modules/typescript/lib",
"search.exclude": {
"**/node_modules": true,
"**/package-lock.json": true,
"**/.next": true
},
"files.exclude": {
"**/.DS_Store": true
}
}