-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitignore
59 lines (44 loc) · 927 Bytes
/
.gitignore
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
### GENERAL
# Windows
Thumbs.db
Desktop.ini
# macOS
.DS_Store
.supported
# common code editors
.atom/
.vscode/
# JetBrains IDEs
# see https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# note: in the future, we might version it
.idea/
# common files
*.log
# local-only files (may be useful during development)
*.local.*
*.local
### PROJECT
# colcon workspace
/log/
/install/
/build/
# symlink to ws/build/compile_commands.json for easily opening the project
# in CLion as "Compilation Database Project"
/compile_commands.json
# correct PYTHONPATH for VSCode's pylint and other tools
.env
# Python caches
__pycache__
*~
*.pyc
*.swp
# original ROS 1 f1tenth
/original/
# Google Cartograhper SLAM state data (maps)
*.pbstream
# external repos (with ROS 2 packages)
/src/external/
/src/vehicle_platform/vesc/
/src/perception/sensors/ros2_razor_imu/
/src/simulation/stage/
/src/simulation/stage_ros2/