.gitignore 626 B

12345678910111213141516171819202122232425262728293031
  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.
  9. /.vscode/settings.json
  10. # Ignore the user's Idea settings.
  11. /.idea/
  12. # Directories created by clangd
  13. /.cache/clangd
  14. # User-specific Bazel configuration.
  15. /user.bazelrc
  16. # Compilation database used by clangd
  17. compile_commands.json
  18. # Emacs temporary files
  19. *~
  20. \#*\#
  21. # vim temporary files
  22. .*.swp