You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .gitignore
+3-7Lines changed: 3 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -34,11 +34,9 @@
34
34
# user's bazel configuration files
35
35
user.bazelrc
36
36
37
-
# bazel artifacts
38
-
/bazel-bin
39
-
/bazel-out
40
-
/bazel-cpp2sky
41
-
/bazel-testlogs
37
+
# Ignore links to Bazel's output. The pattern needs the `*` because people can change the name of the directory into which your repository is cloned (changing the `bazel-<workspace_name>` symlink), and must not end with a trailing `/` because it's a symlink on macOS/Linux.
38
+
/bazel-*
39
+
MODULE.bazel.lock
42
40
43
41
# editor settings
44
42
.vscode/
@@ -51,8 +49,6 @@ coverage_report
51
49
### Automatically added by Hedron's Bazel Compile Commands Extractor: https://github.com/hedronvision/bazel-compile-commands-extractor
52
50
# Ignore the `external` link (that is added by `bazel-compile-commands-extractor`). The link differs between macOS/Linux and Windows, so it shouldn't be checked in. The pattern must not end with a trailing `/` because it's a symlink on macOS/Linux.
53
51
/external
54
-
# Ignore links to Bazel's output. The pattern needs the `*` because people can change the name of the directory into which your repository is cloned (changing the `bazel-<workspace_name>` symlink), and must not end with a trailing `/` because it's a symlink on macOS/Linux.
55
-
/bazel-*
56
52
# Ignore generated output. Although valuable (after all, the primary purpose of `bazel-compile-commands-extractor` is to produce `compile_commands.json`!), it should not be checked in.
57
53
/compile_commands.json
58
54
# Ignore the directory in which `clangd` stores its local index.
0 commit comments