-
Notifications
You must be signed in to change notification settings - Fork 442
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create root level .gitignore file (#37)
Signed-off-by: Jiaxin Shan <[email protected]>
- Loading branch information
Showing
2 changed files
with
44 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Ignore backup files. | ||
*~ | ||
# Ignore Vim swap files. | ||
**/.*.swp | ||
# Ignore files generated by IDEs. | ||
**/.classpath | ||
**/.factorypath | ||
**/.idea/ | ||
**/.ijwb/ | ||
**/.project | ||
**/.settings | ||
**/.vscode/ | ||
**/bazel.iml | ||
# Ignore all bazel-* symlinks. There is no full list since this can change | ||
# based on the name of the directory bazel is cloned into. | ||
**/bazel-* | ||
# Ignore outputs generated during Bazel bootstrapping. | ||
**/output/ | ||
# Ignore jekyll build output. | ||
**/production | ||
**/.sass-cache | ||
# Bazelisk version file | ||
**/.bazelversion | ||
# User-specific .bazelrc | ||
**/user.bazelrc | ||
|
||
# Binaries for programs and plugins | ||
**/*.exe | ||
**/*.exe~ | ||
**/*.dll | ||
**/*.so | ||
**/*.dylib | ||
**/testbin/* | ||
|
||
# Test binary, built with `go test -c` | ||
**/*.test | ||
|
||
# Output of the go coverage tool, specifically when used with LiteIDE | ||
**/*.out | ||
|
||
**/bin/ | ||
# Dependency directories (remove the comment below to include it) | ||
**/vendor/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters