aboutsummaryrefslogtreecommitdiffstats
path: root/.gitignore
blob: e8dae2178d5832de55a57631aaaf33a764e26ce0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# 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/