.gitignore 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. # Exceptions. See /LICENSE for license information.
  3. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. # Directories and symlinks generated by bazel.
  5. /bazel-*
  6. # See github_tools/MODULE.bazel.
  7. /github_tools/bazel-*
  8. /github_tools/MODULE.bazel.lock
  9. # We also have example Bazel projects that shouldn't have their implementation
  10. # details committed.
  11. /examples/**/bazel-*
  12. /examples/**/MODULE.bazel.lock
  13. # Directories created by python.
  14. **/__pycache__/
  15. # Ignore the user's VSCode settings and debug setup.
  16. /.vscode/settings.json
  17. /.vscode/launch.json
  18. # Ignore the user's Idea settings.
  19. /.idea/
  20. # Directories created by clangd
  21. /.cache/clangd
  22. # User-specific Bazel configuration.
  23. /user.bazelrc
  24. # Compilation database used by clangd
  25. /compile_commands.json
  26. # Emacs temporary files
  27. *~
  28. \#*\#
  29. # vim temporary files
  30. .*.sw[a-p]
  31. .swp
  32. # generated by utils/tree_sitter/helix.sh
  33. /.helix/
  34. # Ignore .DS_Store files
  35. .DS_Store
  36. # Ignore the .gdb_history that's created next to the project-specific .gdbinit
  37. .gdb_history