.gitignore 478 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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/
  29. .vscode/
  30. # KDevelop IDE
  31. *.kdev4