We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe078cc commit f1c1ed5Copy full SHA for f1c1ed5
.editorconfig
@@ -13,7 +13,7 @@ indent_size = 2
13
trim_trailing_whitespace = true
14
insert_final_newline = false
15
16
-[{*.ts}]
+[{*.ts,.vscode/*.json}]
17
indent_size = 4
18
19
insert_final_newline = true
.vscode/extensions.json
@@ -0,0 +1,6 @@
1
+{
2
+ "recommendations": [
3
+ "esbenp.prettier-vscode",
4
+ "editorconfig.editorconfig"
5
+ ]
6
+}
.vscode/settings.json
@@ -0,0 +1,11 @@
+ "prettier.documentSelectors": [
+ "*.{ts,js}"
+ ],
+ "[javascript]": {
+ "editor.defaultFormatter": "esbenp.prettier-vscode"
7
+ },
8
+ "[typescript]": {
9
10
+ }
11
0 commit comments