]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Exclude .build and .hex from Visual Studio code
authorFred Sundvik <fsundvik@gmail.com>
Sun, 25 Jun 2017 11:17:51 +0000 (14:17 +0300)
committerJack Humbert <jack.humb@gmail.com>
Sun, 9 Jul 2017 01:59:51 +0000 (21:59 -0400)
.gitignore
.vscode/settings.json [new file with mode: 0644]

index 9381f1afe48ec693c3da7a6747dc478d9b6ba9b3..ffa7662bd7edc6a4122aebea09ac3f564528a52c 100644 (file)
@@ -32,7 +32,9 @@ CMakeLists.txt
 .browse.VC.db*
 *.stackdump
 util/Win_Check_Output.txt
-.vscode
+# Let these ones be user specific, since we have so many different configurations
+.vscode/launch.json
+.vscode/tasks.json
 .stfolder
 
 # ignore image files
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644 (file)
index 0000000..f5d7a76
--- /dev/null
@@ -0,0 +1,8 @@
+// Place your settings in this file to overwrite default and user settings.
+{
+    // Configure glob patterns for excluding files and folders.
+    "files.exclude": {
+        "**/.build": true,
+        "**/*.hex": true
+    }
+}
\ No newline at end of file