123456789101112131415161718192021222324252627282930313233343536373839 |
- # Ignore generated binaries -- any file without extension
- # Ignore all
- *
- # Unignore all with extensions
- !*.*
- # Unignore all dirs
- !*/
- # Unignore all files inside canondata dir
- !*/canondata/*
- # C libraries
- *.so
- *.a
- # Byte-compiled / optimized / DLL files
- __pycache__/
- *.py[cod]
- *$py.class
- # Generated protos
- *_pb2.py
- *_pb2_grpc.py
- *_pb2.pyi
- # MacOS specific
- .DS_Store
- # clangd cache
- /.cache
- /compile_commands.json
- /build_*
- /build-*
- .idea/
- # KDevelop IDE
- *.kdev4
|