Skip to content

Commit 8feeaf3

Browse files
author
matraszek
committed
.gitignore
1 parent 5fb3cf5 commit 8feeaf3

File tree

1 file changed

+230
-0
lines changed

1 file changed

+230
-0
lines changed

.gitignore

Lines changed: 230 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,230 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Linux template
3+
*~
4+
5+
# temporary files which can be created if a process still has a handle open of a deleted file
6+
.fuse_hidden*
7+
8+
# KDE directory preferences
9+
.directory
10+
11+
# Linux trash folder which might appear on any partition or disk
12+
.Trash-*
13+
14+
# .nfs files are created when an open file is removed but is still being accessed
15+
.nfs*
16+
17+
### Python template
18+
# Byte-compiled / optimized / DLL files
19+
__pycache__/
20+
*.py[cod]
21+
*$py.class
22+
23+
# C extensions
24+
*.so
25+
26+
# Distribution / packaging
27+
.Python
28+
build/
29+
develop-eggs/
30+
dist/
31+
downloads/
32+
eggs/
33+
.eggs/
34+
lib/
35+
lib64/
36+
parts/
37+
sdist/
38+
var/
39+
wheels/
40+
pip-wheel-metadata/
41+
share/python-wheels/
42+
*.egg-info/
43+
.installed.cfg
44+
*.egg
45+
MANIFEST
46+
47+
# PyInstaller
48+
# Usually these files are written by a python script from a template
49+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
50+
*.manifest
51+
*.spec
52+
53+
# Installer logs
54+
pip-log.txt
55+
pip-delete-this-directory.txt
56+
57+
# Unit test / coverage reports
58+
htmlcov/
59+
.tox/
60+
.nox/
61+
.coverage
62+
.coverage.*
63+
.cache
64+
nosetests.xml
65+
coverage.xml
66+
*.cover
67+
*.py,cover
68+
.hypothesis/
69+
.pytest_cache/
70+
cover/
71+
72+
# Translations
73+
*.mo
74+
*.pot
75+
76+
# Django stuff:
77+
*.log
78+
local_settings.py
79+
db.sqlite3
80+
db.sqlite3-journal
81+
82+
# Flask stuff:
83+
instance/
84+
.webassets-cache
85+
86+
# Scrapy stuff:
87+
.scrapy
88+
89+
# Sphinx documentation
90+
docs/_build/
91+
92+
# PyBuilder
93+
.pybuilder/
94+
target/
95+
96+
# Jupyter Notebook
97+
.ipynb_checkpoints
98+
99+
# IPython
100+
profile_default/
101+
ipython_config.py
102+
103+
# pyenv
104+
# For a library or package, you might want to ignore these files since the code is
105+
# intended to run in multiple environments; otherwise, check them in:
106+
# .python-version
107+
108+
# pipenv
109+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
110+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
111+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
112+
# install all needed dependencies.
113+
#Pipfile.lock
114+
115+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
116+
__pypackages__/
117+
118+
# Celery stuff
119+
celerybeat-schedule
120+
celerybeat.pid
121+
122+
# SageMath parsed files
123+
*.sage.py
124+
125+
# Environments
126+
.env
127+
.venv
128+
env/
129+
venv/
130+
ENV/
131+
env.bak/
132+
venv.bak/
133+
134+
# Spyder project settings
135+
.spyderproject
136+
.spyproject
137+
138+
# Rope project settings
139+
.ropeproject
140+
141+
# mkdocs documentation
142+
/site
143+
144+
# mypy
145+
.mypy_cache/
146+
.dmypy.json
147+
dmypy.json
148+
149+
# Pyre type checker
150+
.pyre/
151+
152+
# pytype static type analyzer
153+
.pytype/
154+
155+
# Cython debug symbols
156+
cython_debug/
157+
158+
### JetBrains template
159+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
160+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
161+
162+
# User-specific stuff
163+
.idea/**/workspace.xml
164+
.idea/**/tasks.xml
165+
.idea/**/usage.statistics.xml
166+
.idea/**/dictionaries
167+
.idea/**/shelf
168+
169+
# Generated files
170+
.idea/**/contentModel.xml
171+
172+
# Sensitive or high-churn files
173+
.idea/**/dataSources/
174+
.idea/**/dataSources.ids
175+
.idea/**/dataSources.local.xml
176+
.idea/**/sqlDataSources.xml
177+
.idea/**/dynamic.xml
178+
.idea/**/uiDesigner.xml
179+
.idea/**/dbnavigator.xml
180+
181+
# Gradle
182+
.idea/**/gradle.xml
183+
.idea/**/libraries
184+
185+
# Gradle and Maven with auto-import
186+
# When using Gradle or Maven with auto-import, you should exclude module files,
187+
# since they will be recreated, and may cause churn. Uncomment if using
188+
# auto-import.
189+
# .idea/artifacts
190+
# .idea/compiler.xml
191+
# .idea/jarRepositories.xml
192+
# .idea/modules.xml
193+
# .idea/*.iml
194+
# .idea/modules
195+
# *.iml
196+
# *.ipr
197+
198+
# CMake
199+
cmake-build-*/
200+
201+
# Mongo Explorer plugin
202+
.idea/**/mongoSettings.xml
203+
204+
# File-based project format
205+
*.iws
206+
207+
# IntelliJ
208+
out/
209+
210+
# mpeltonen/sbt-idea plugin
211+
.idea_modules/
212+
213+
# JIRA plugin
214+
atlassian-ide-plugin.xml
215+
216+
# Cursive Clojure plugin
217+
.idea/replstate.xml
218+
219+
# Crashlytics plugin (for Android Studio and IntelliJ)
220+
com_crashlytics_export_strings.xml
221+
crashlytics.properties
222+
crashlytics-build.properties
223+
fabric.properties
224+
225+
# Editor-based Rest Client
226+
.idea/httpRequests
227+
228+
# Android studio 3.1+ serialized cache file
229+
.idea/caches/build_file_checksums.ser
230+

0 commit comments

Comments
 (0)