.gitignore 750 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. # Directories created by python.
  7. **/__pycache__/
  8. # Ignore the user's VSCode settings and debug setup.
  9. /.vscode/settings.json
  10. /.vscode/launch.json
  11. # Ignore the user's Idea settings.
  12. /.idea/
  13. # Directories created by clangd
  14. /.cache/clangd
  15. # User-specific Bazel configuration.
  16. /user.bazelrc
  17. # Compilation database used by clangd
  18. compile_commands.json
  19. # Emacs temporary files
  20. *~
  21. \#*\#
  22. # vim temporary files
  23. .*.swp
  24. # generated by utils/treesitter/helix.sh
  25. /.helix/
  26. # Ignore .DS_Store files
  27. .DS_Store