.gitignore 937 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. # Directories created by python.
  10. **/__pycache__/
  11. # Ignore the user's VSCode settings and debug setup.
  12. /.vscode/settings.json
  13. /.vscode/launch.json
  14. # Ignore the user's Idea settings.
  15. /.idea/
  16. # Directories created by clangd
  17. /.cache/clangd
  18. # User-specific Bazel configuration.
  19. /user.bazelrc
  20. # Compilation database used by clangd
  21. /compile_commands.json
  22. # Emacs temporary files
  23. *~
  24. \#*\#
  25. # vim temporary files
  26. .*.sw[a-p]
  27. # generated by utils/tree_sitter/helix.sh
  28. /.helix/
  29. # Ignore .DS_Store files
  30. .DS_Store
  31. # Ignore the .gdb_history that's created next to the project-specific .gdbinit
  32. .gdb_history