Răsfoiți Sursa

Add a .vscode exception. (#248)

We'd tried to skip this before, but VSCode keeps wanting to create the directory for me, and I think both you and I are using it (maybe me more than you right now?). I'd like to just ignore it -- seems like a cheap add.
Jon Meow 5 ani în urmă
părinte
comite
65914f955e
1 a modificat fișierele cu 7 adăugiri și 1 ștergeri
  1. 7 1
      .gitignore

+ 7 - 1
.gitignore

@@ -2,5 +2,11 @@
 # Exceptions. See /LICENSE for license information.
 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 
-**/__pycache__/
+# Directories and symlinks generated by bazel.
 /bazel-*
+
+# Directories created by python.
+**/__pycache__/
+
+# VSCode creates this directory in ways that are hard to prevent.
+/.vscode/