-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
33 lines (33 loc) · 1017 Bytes
/
settings.json
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
{
"editor.largeFileOptimizations": true,
"editor.formatOnSave": true,
"editor.fontFamily": "'JetBrains Mono', Consolas, 'Courier New', monospace",
"editor.detectIndentation": false,
"editor.fontLigatures": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontSize": 15,
"editor.tabSize": 2,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/node_modules": true
},
"telemetry.telemetryLevel": "off",
"terminal.integrated.fontSize": 15,
"svelte.enable-ts-plugin": true,
"svelte.plugin.svelte.useNewTransformation": true,
"svelte.plugin.svelte.defaultScriptLanguage": "ts",
"svelte.plugin.svelte.compilerWarnings": {
"css-unused-selector": "ignore"
},
"workbench.colorTheme": "Vitesse Dark Soft",
"workbench.iconTheme": "helium-icon-theme",
"[svelte]": {
"editor.defaultFormatter": "svelte.svelte-vscode",
"editor.formatOnSave": true
}
}