Skip to content

Commit 448b916

Browse files
fredizzimojackhumbert
authored andcommitted
Exclude .build and .hex from Visual Studio code
1 parent 6e2cae4 commit 448b916

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ CMakeLists.txt
3232
.browse.VC.db*
3333
*.stackdump
3434
util/Win_Check_Output.txt
35-
.vscode
35+
# Let these ones be user specific, since we have so many different configurations
36+
.vscode/launch.json
37+
.vscode/tasks.json
3638
.stfolder
3739

3840
# ignore image files

.vscode/settings.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// Place your settings in this file to overwrite default and user settings.
2+
{
3+
// Configure glob patterns for excluding files and folders.
4+
"files.exclude": {
5+
"**/.build": true,
6+
"**/*.hex": true
7+
}
8+
}

0 commit comments

Comments
 (0)