Browse Source

add vscode settings to format files on save (#6579)

Madhu Dollu 2 years ago
parent
commit
9bfdbb1193
1 changed files with 8 additions and 0 deletions
  1. 8 0
      .vscode/settings.json

+ 8 - 0
.vscode/settings.json

@@ -0,0 +1,8 @@
+{
+    "editor.formatOnSave": true,
+    "files.insertFinalNewline": true,
+    "files.trimFinalNewlines": true,
+    "editor.detectIndentation": false,
+    "editor.tabSize": 4,
+    "editor.insertSpaces": true,
+}