Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 17 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
build/
/cmake-build-*
/venv
/.vscode
/.idea
/.cache
/.DS_Store
# ignore all directories that start with .
**/.*/

# ignore conventionally-named build directories
**/build*/
**/*build/
# and some other build directories
**/cmake-build-*/

# ignore conventionally-named python virtual env directories
# (this is only necessary before Python 3.13)
**/venv*/
**/*venv/
# and __pycache__ directories
**/__pycache__/

# ignore files provided by CICD
/.clang-format
/.clang-tidy
/.cmake-format.yaml
Expand Down
Loading