Skip to content

Commit

Permalink
Create root level .gitignore file (#37)
Browse files Browse the repository at this point in the history
Signed-off-by: Jiaxin Shan <[email protected]>
  • Loading branch information
Jeffwan authored Sep 22, 2021
1 parent e5b2e49 commit 6743385
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 44 deletions.
44 changes: 44 additions & 0 deletions .gitignore
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/

44 changes: 0 additions & 44 deletions ray-operator/.gitignore
Original file line number Diff line number Diff line change
@@ -1,47 +1,3 @@
# 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/

# Project related ignores
/ray-operator

Expand Down

0 comments on commit 6743385

Please sign in to comment.