Skip to content

Commit 3f2c022

Browse files
committed
.vscode/settings.json: add TypeScript & JavaScript
Add indentation settings for TypeScript and Javascript (currently used in the integration/end-to-end tests). These settings are consistent with the conventions already used in those files; this patch just codifies them. Signed-off-by: Victoria Dye <[email protected]>
1 parent 6e88150 commit 3f2c022

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.vscode/settings.json

+12
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,25 @@
2525
"editor.insertSpaces": false,
2626
"editor.tabSize": 8,
2727
},
28+
"[javascript]": {
29+
"editor.detectIndentation": false,
30+
"editor.insertSpaces": true,
31+
"editor.tabSize": 2,
32+
},
33+
"[typescript]": {
34+
"editor.detectIndentation": false,
35+
"editor.insertSpaces": true,
36+
"editor.tabSize": 2,
37+
},
2838
"files.associations": {
2939
"*.adoc": "asciidoc",
3040
"*.asc": "asciidoc",
3141
"*.md": "markdown",
3242
"*.sh": "shellscript",
3343
"prerm": "shellscript",
3444
"postinstall": "shellscript",
45+
"*.js": "javascript",
46+
"*.ts": "typescript",
3547
"Makefile": "makefile"
3648
},
3749

0 commit comments

Comments
 (0)