Browse Source

Add new rules to .gitignore

`.vscode/` ignores Visual Studio Code user config files
`bazel-*` ignores bazel build system symlinks.
`out/` ignores the default output directory for Visual Studio generated files.
Ben Clayton 5 years ago
parent
commit
a21c5f3604
1 changed files with 3 additions and 0 deletions
  1. 3 0
      .gitignore

+ 3 - 0
.gitignore

@@ -2,9 +2,12 @@
 *.a
 *.a
 *.so
 *.so
 *.exe
 *.exe
+.vscode/
 tags
 tags
 TAGS
 TAGS
+bazel-*
 build/
 build/
 Test/localResults/
 Test/localResults/
 External/googletest
 External/googletest
 External/spirv-tools
 External/spirv-tools
+out/