.gitignore 552 B

12345678910111213141516171819202122232425
  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. # Directories created by clangd
  11. /.cache/clangd
  12. # User-specific Bazel configuration.
  13. /user.bazelrc
  14. # Compilation database used by clangd
  15. compile_commands.json
  16. # Emacs temporary files
  17. *~
  18. \#*\#