Skip to content

Commit fb943ca

Browse files
committed
a few updates to the gitignore file
1 parent 2d5e876 commit fb943ca

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed

.gitignore

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,10 @@ tramp
122122
# KDE directory preferences
123123
.directory
124124

125+
# KDevelop
126+
*.kdev4
127+
.kdev4/
128+
125129

126130
### OSX ###
127131
.DS_Store
@@ -194,3 +198,64 @@ atlassian-ide-plugin.xml
194198
# Crashlytics plugin (for Android Studio and IntelliJ)
195199
com_crashlytics_export_strings.xml
196200

201+
# Created by https://www.gitignore.io
202+
203+
### Python ###
204+
# Byte-compiled / optimized / DLL files
205+
__pycache__/
206+
*.py[cod]
207+
208+
# C extensions
209+
*.so
210+
211+
# Distribution / packaging
212+
.Python
213+
env/
214+
build/
215+
develop-eggs/
216+
dist/
217+
downloads/
218+
eggs/
219+
lib/
220+
lib64/
221+
parts/
222+
sdist/
223+
var/
224+
*.egg-info/
225+
.installed.cfg
226+
*.egg
227+
228+
# PyInstaller
229+
# Usually these files are written by a python script from a template
230+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
231+
*.manifest
232+
*.spec
233+
234+
# Installer logs
235+
pip-log.txt
236+
pip-delete-this-directory.txt
237+
238+
# Unit test / coverage reports
239+
htmlcov/
240+
.tox/
241+
.coverage
242+
.cache
243+
nosetests.xml
244+
coverage.xml
245+
246+
# Translations
247+
*.mo
248+
*.pot
249+
250+
# Django stuff:
251+
*.log
252+
253+
# Sphinx documentation
254+
docs/_build/
255+
256+
# PyBuilder
257+
target/
258+
259+
# IPython
260+
*.ipynb_checkpoints/
261+

0 commit comments

Comments
 (0)