Skip to content

Commit 82240b7

Browse files
Merge pull request #580 from soulee-dev/patch-1
Update .gitignore
2 parents 6850c0d + bb7bb47 commit 82240b7

File tree

1 file changed

+155
-22
lines changed

1 file changed

+155
-22
lines changed

.gitignore

Lines changed: 155 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,178 @@
1-
*.py[co]
1+
# Byte-compiled / optimized / DLL files
2+
*.py[cod]
3+
*$py.class
4+
__pycache__/
25

3-
# Packages
4-
*.egg
5-
*.egg-info
6-
dist
7-
build
8-
eggs
9-
parts
10-
bin
11-
var
12-
sdist
13-
develop-eggs
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
share/python-wheels/
24+
*.egg-info/
1425
.installed.cfg
26+
*.egg
27+
MANIFEST
28+
29+
# PyInstaller
30+
*.manifest
31+
*.spec
1532

1633
# Installer logs
1734
pip-log.txt
35+
pip-delete-this-directory.txt
1836

1937
# Unit test / coverage reports
38+
htmlcov/
39+
.tox/
40+
.nox/
2041
.coverage
21-
.tox
42+
.coverage.*
43+
.cache
44+
nosetests.xml
45+
coverage.xml
46+
*.cover
47+
*.py,cover
48+
.hypothesis/
49+
.pytest_cache/
50+
cover/
2251

2352
# Translations
2453
*.mo
54+
*.pot
2555

26-
#Mr Developer
27-
.mr.developer.cfg
56+
# Django stuff:
57+
*.log
58+
local_settings.py
59+
db.sqlite3
60+
db.sqlite3-journal
2861

29-
# Doc
30-
_build
62+
# Flask stuff:
63+
instance/
64+
.webassets-cache
3165

32-
# Text Editor Backupfile
33-
*~
66+
# Scrapy stuff:
67+
.scrapy
68+
69+
# Sphinx documentation
70+
docs/_build/
71+
72+
# PyBuilder
73+
.pybuilder/
74+
target/
75+
76+
# Jupyter Notebook
77+
.ipynb_checkpoints
78+
79+
# IPython
80+
profile_default/
81+
ipython_config.py
82+
83+
# Environments
84+
.env
85+
.venv
86+
env/
87+
venv/
88+
ENV/
89+
env.bak/
90+
venv.bak/
91+
92+
# Spyder project settings
93+
.spyderproject
94+
.spyproject
95+
96+
# Rope project settings
97+
.ropeproject
98+
99+
# mkdocs documentation
100+
/site
101+
102+
# mypy
103+
.mypy_cache/
104+
.dmypy.json
105+
dmypy.json
34106

35-
# Intellij IDE
36-
.idea
107+
# Pyre type checker
108+
.pyre/
109+
110+
# pytype static type analyzer
111+
.pytype/
112+
113+
# Cython debug symbols
114+
cython_debug/
115+
116+
# JetBrains IDEs (IntelliJ, PyCharm, etc.)
117+
.idea/
37118
*.xml
38119
*.iml
39120

121+
# User-specific stuff (JetBrains IDEs)
122+
.idea/**/workspace.xml
123+
.idea/**/tasks.xml
124+
.idea/**/usage.statistics.xml
125+
.idea/**/dictionaries
126+
.idea/**/shelf
127+
.idea/**/aws.xml
128+
.idea/**/contentModel.xml
129+
.idea/**/dataSources/
130+
.idea/**/dataSources.ids
131+
.idea/**/dataSources.local.xml
132+
.idea/**/sqlDataSources.xml
133+
.idea/**/dynamic.xml
134+
.idea/**/uiDesigner.xml
135+
.idea/**/dbnavigator.xml
136+
.idea/**/gradle.xml
137+
.idea/**/libraries
138+
.idea/**/mongoSettings.xml
139+
.idea/httpRequests
140+
.idea/caches/build_file_checksums.ser
141+
142+
# Other IDEs / tools
143+
*.iws
144+
.out/
145+
.idea_modules/
146+
atlassian-ide-plugin.xml
147+
.idea/replstate.xml
148+
.idea/sonarlint/
149+
com_crashlytics_export_strings.xml
150+
crashlytics.properties
151+
crashlytics-build.properties
152+
fabric.properties
153+
154+
# Packages
155+
*.egg
156+
*.egg-info
157+
158+
# SageMath parsed files
159+
*.sage.py
160+
161+
# Celery
162+
celerybeat-schedule
163+
celerybeat.pid
164+
165+
# Text Editor Backupfile
166+
*~
167+
40168
# Nose
41169
.noseids
42170

43171
# Pyenv
44172
.python-version
45-
MANIFEST
173+
174+
# PDM
175+
.pdm.toml
176+
177+
# PEP 582
178+
__pypackages__/

0 commit comments

Comments
 (0)