.gitignore 445 B

123456789101112131415161718192021222324252627282930313233343536
  1. # Ignore generated binaries -- any file without extension
  2. # Ignore all
  3. *
  4. # Unignore all with extensions
  5. !*.*
  6. # Unignore all dirs
  7. !*/
  8. # Unignore all files inside canondata dir
  9. !*/canondata/*
  10. # C libraries
  11. *.so
  12. *.a
  13. # Byte-compiled / optimized / DLL files
  14. __pycache__/
  15. *.py[cod]
  16. *$py.class
  17. # Generated protos
  18. *_pb2.py
  19. *_pb2_grpc.py
  20. *_pb2.pyi
  21. # MacOS specific
  22. .DS_Store
  23. # clangd cache
  24. /.cache
  25. /compile_commands.json
  26. /build_*
  27. /build-*
  28. .idea/