Skip to content

Commit 7a0cfd1

Browse files
authored
Merge pull request #289 from elbeno/update-gitignore
🎨 Update .gitignore
2 parents 2e20a6c + 6bd7dc5 commit 7a0cfd1

File tree

1 file changed

+25
-18
lines changed

1 file changed

+25
-18
lines changed

.gitignore

Lines changed: 25 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,26 @@
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

0 commit comments

Comments
 (0)