]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Instruct VSCode to indent using spaces, also ignore two temp files created by VSCode.
authorJeremy Cowgar <jeremy@cowgar.com>
Wed, 20 Sep 2017 17:38:27 +0000 (13:38 -0400)
committerJack Humbert <jack.humb@gmail.com>
Thu, 21 Sep 2017 04:15:53 +0000 (00:15 -0400)
.gitignore
.vscode/settings.json

index e766619098775fd1e35f444ab19fd9e9a9926c76..e77127268beaa9d7b3e381afc85c1409dcb1c59c 100644 (file)
@@ -39,6 +39,8 @@ util/Win_Check_Output.txt
 # Let these ones be user specific, since we have so many different configurations
 .vscode/launch.json
 .vscode/tasks.json
+.vscode/last.sql
+.vscode/temp.sql
 .stfolder
 
 # ignore image files
@@ -47,7 +49,7 @@ util/Win_Check_Output.txt
 *.gif
 
 # Do not ignore MiniDox left/right hand eeprom files
-!keyboards/minidox/*.eep 
+!keyboards/minidox/*.eep
 
 # things travis sees
 secrets.tar
index be0b85b78ffa2713b6610295502a5dc6ee8c8fbc..afe8341d0e2e4387283f0e8351c38bdf274b45ca 100644 (file)
@@ -1,5 +1,7 @@
 // Place your settings in this file to overwrite default and user settings.
 {
+    // Unofficially, QMK uses spaces for indentation
+    "editor.insertSpaces": true,
     // Configure glob patterns for excluding files and folders.
     "files.exclude": {
         "**/.build": true,