.gitignore 313 B

123456789101112131415
  1. # Ignore all bazel-* symlinks.
  2. /bazel-*
  3. # Ignore Bazel verbose explanations
  4. --verbose_explanations
  5. # Ignore CMake usual build directory
  6. build
  7. # Ignore Vim files
  8. *.swp
  9. # Ignore QtCreator Project file
  10. CMakeLists.txt.user
  11. # Ignore VS Code files
  12. .vscode/*
  13. # Ignore generated python artifacts
  14. *.pyc
  15. copts/__pycache__/