Skip to content

Commit c8ccf65

Browse files
authored
Add .vscode/settings.json (#236)
Since this repo uses a style that is not the default in either prettier nor biome, VSCode format on save results in huge modifications. This is very annoying and slows down development by a lot. This settings file fixes that by using VSCode's built in formatter with the settings specified in `contributing.md`.
1 parent 8594e19 commit c8ccf65

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.vscode/settings.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"editor.tabSize": 2,
3+
"[javascript]": {
4+
"editor.defaultFormatter": "vscode.typescript-language-features",
5+
},
6+
"javascript.format.semicolons": "remove",
7+
"typescript.format.semicolons": "remove",
8+
"javascript.preferences.quoteStyle": "auto",
9+
"typescript.preferences.quoteStyle": "auto"
10+
}

0 commit comments

Comments
 (0)