forked from SEAME-pt/SEAME-Course-24-25
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
63 lines (52 loc) · 1.32 KB
/
.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
60
61
62
63
# Ignore Bazel build outputs
bazel-out/
build/
bazel-*
# Ignore Bazel configuration files
# (e.g., from bazel query or bazel sync)
*.lock
# Ignore IDE files and project-specific settings
.idea/ # JetBrains IDE (e.g., IntelliJ, PyCharm)
.idea
.vscode/ # Visual Studio Code settings
*.sublime-workspace
*.sublime-project
*.kate-swp
# Ignore CMake/Build configuration files (if you ever use them)
CMakeLists.txt.user
CMakeCache.txt
Makefile
*.cmake
_deps/
CMakeFiles*/
# Ignore OS-specific files
.DS_Store # macOS system file
Thumbs.db # Windows thumbnail cache
ehthumbs.db
# Ignore compiled C++ artifacts
*.o # Object files
*.a # Static libraries
*.so # Shared libraries
*.dll # Windows dynamic link libraries
*.dylib # macOS shared libraries
*.out # Executable output
*.exe # Windows executables
# Ignore Python virtual environments (if applicable)
venv/
env/
*.pyc
*.pyo
__pycache__/
# Ignore log files
*.log
# Ignore temporary files
*.swp # Vim swap files
*.swo # Vim temporary files
*~ # General editor backup files
# Ignore Bazel-specific cache and logs
/.bazel-*
.bazel-*/
# Ignore coverage report files
genhtml/
# Ignore compile commands
compile_commands.json