File tree Expand file tree Collapse file tree 1 file changed +25
-18
lines changed Expand file tree Collapse file tree 1 file changed +25
-18
lines changed Original file line number Diff line number Diff line change 1- build /
2- /cmake-build- *
3- /venv
4- /.vscode
5- /.idea
6- /.cache
7- /.DS_Store
8- .clang-format
9- .clang-tidy
10- .cmake-format.yaml
11- CMakePresets.json
1+ # ignore all directories that start with .
2+ ** /. * /
3+
4+ # ignore conventionally-named build directories
5+ ** /build * /
6+ ** /* build /
7+ # and some other build directories
8+ ** /cmake-build- * /
9+
10+ # ignore conventionally-named python virtual env directories
11+ # (this is only necessary before Python 3.13)
12+ ** /venv * /
13+ ** /* venv /
14+ # and __pycache__ directories
15+ ** /__pycache__ /
16+
17+ # ignore files provided by CICD
18+ /.clang-format
19+ /.clang-tidy
20+ /.cmake-format.yaml
21+ /CMakePresets.json
1222/toolchains
13- __pycache__
14- .mypy_cache
15- .pytest_cache
16- .hypothesis
17- requirements.txt
18- docs /puppeteer_config.json
19- docs /mermaid.conf
23+ /mull.yml
24+ /requirements.txt
25+ /docs /puppeteer_config.json
26+ /docs /mermaid.conf
You can’t perform that action at this time.
0 commit comments