Skip to content

Commit a7d691e

Browse files
committedJun 6, 2023
adds .gitignore
1 parent e890690 commit a7d691e

File tree

1 file changed

+112
-0
lines changed

1 file changed

+112
-0
lines changed
 

‎.gitignore

+112
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
*~
2+
.fuse_hidden*
3+
.directory
4+
.Trash-*
5+
.nfs*
6+
Thumbs.db
7+
Thumbs.db:encryptable
8+
ehthumbs.db
9+
ehthumbs_vista.db
10+
*.stackdump
11+
[Dd]esktop.ini
12+
$RECYCLE.BIN/
13+
*.cab
14+
*.msi
15+
*.msix
16+
*.msm
17+
*.msp
18+
*.lnk
19+
.ipynb_checkpoints
20+
*/.ipynb_checkpoints/*
21+
profile_default/
22+
ipython_config.py
23+
.DS_Store
24+
.AppleDouble
25+
.LSOverride
26+
Icon
27+
._*
28+
.DocumentRevisions-V100
29+
.fseventsd
30+
.Spotlight-V100
31+
.TemporaryItems
32+
.Trashes
33+
.VolumeIcon.icns
34+
.com.apple.timemachine.donotpresent
35+
.AppleDB
36+
.AppleDesktop
37+
Network Trash Folder
38+
Temporary Items
39+
.apdisk
40+
__pycache__/
41+
*.py[cod]
42+
*$py.class
43+
*.so
44+
.Python
45+
build/
46+
develop-eggs/
47+
dist/
48+
downloads/
49+
eggs/
50+
.eggs/
51+
lib/
52+
lib64/
53+
parts/
54+
sdist/
55+
var/
56+
wheels/
57+
share/python-wheels/
58+
*.egg-info/
59+
.installed.cfg
60+
*.egg
61+
MANIFEST
62+
*.manifest
63+
*.spec
64+
pip-log.txt
65+
pip-delete-this-directory.txt
66+
htmlcov/
67+
.tox/
68+
.nox/
69+
.coverage
70+
.coverage.*
71+
.cache
72+
nosetests.xml
73+
coverage.xml
74+
*.cover
75+
*.py,cover
76+
.hypothesis/
77+
.pytest_cache/
78+
cover/
79+
*.mo
80+
*.pot
81+
*.log
82+
local_settings.py
83+
db.sqlite3
84+
db.sqlite3-journal
85+
instance/
86+
.webassets-cache
87+
.scrapy
88+
docs/_build/
89+
.pybuilder/
90+
target/
91+
.pdm.toml
92+
__pypackages__/
93+
celerybeat-schedule
94+
celerybeat.pid
95+
*.sage.py
96+
.env
97+
.venv
98+
env/
99+
venv/
100+
ENV/
101+
env.bak/
102+
venv.bak/
103+
.spyderproject
104+
.spyproject
105+
.ropeproject
106+
/site
107+
.mypy_cache/
108+
.dmypy.json
109+
dmypy.json
110+
.pyre/
111+
.pytype/
112+
cython_debug/

0 commit comments

Comments
 (0)
Please sign in to comment.