Skip to content

Commit 4f698bf

Browse files
ADD gitignore for the missing formats.
1 parent 52de28c commit 4f698bf

File tree

1 file changed

+74
-13
lines changed

1 file changed

+74
-13
lines changed

.gitignore

+74-13
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,50 @@
1-
# Build directories
1+
# Python bytecode and cache
2+
__pycache__/
3+
**/__pycache__/
4+
*.py[cod]
5+
*$py.class
6+
7+
# Distribution and packaging
8+
.Python
29
build/
310
_build/
411
**/build/
12+
develop-eggs/
513
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
622
*.egg-info/
23+
.installed.cfg
24+
*.egg
725

826
# External dependencies
27+
ext/**
928
external/
1029
**/external/
1130

12-
# IDE specific
31+
# IDE and editor settings
1332
.vscode/
1433
.vs/
34+
.idea/
1535
*.suo
1636
*.user
1737
*.sln
1838
*.vcxproj
1939
*.vcxproj.filters
2040
*.vcxproj.user
2141
ipch/
22-
.idea/
42+
.spyderproject
43+
.spyproject
44+
.ropeproject
45+
scripts/.idea/**
2346

24-
# Compiled files
25-
*.pyc
26-
__pycache__/
27-
**/__pycache__/
47+
# Compiled files and binaries
2848
*.pyd
2949
*.so
3050
*.dll
@@ -35,6 +55,8 @@ __pycache__/
3555
*.exp
3656
*.lib
3757
*.lprof
58+
*.manifest
59+
*.spec
3860

3961
# CMake generated
4062
CMakeCache.txt
@@ -45,16 +67,55 @@ CTestTestfile.cmake
4567
Testing/
4668
_deps/
4769

48-
# Python virtual environments
70+
# Virtual environments
71+
.env
72+
.venv
4973
venv/
50-
env/
51-
.env/
52-
.venv/
74+
ENV/
75+
.python-version
5376

54-
# Cache directories
77+
# Testing and coverage
78+
htmlcov/
79+
.tox/
80+
.coverage
81+
.coverage.*
82+
.cache
83+
nosetests.xml
84+
coverage.xml
85+
*.cover
86+
.hypothesis/
5587
.pytest_cache/
5688
.ruff_cache/
89+
.mypy_cache/
90+
91+
# Documentation
92+
docs/_build/
93+
/site
94+
95+
# COMPAS CGAL specific
96+
*.3dmbak
97+
*.3dm
98+
*.rhl
99+
*.rui_bak
100+
temp/
101+
generated/
102+
recipe/**
103+
!recipe/sha256.py
104+
105+
# Logs and temporary files
106+
*.log
107+
pip-log.txt
108+
pip-delete-this-directory.txt
109+
local_settings.py
110+
celerybeat-schedule
57111

58-
# OS specific
112+
# Other
113+
*.mo
114+
*.pot
115+
*.sage.py
116+
instance/
117+
.webassets-cache
118+
.scrapy
59119
.DS_Store
60120
Thumbs.db
121+
.ipynb_checkpoints

0 commit comments

Comments
 (0)