Projekt

Obecné

Profil

Stáhnout (3.98 KB) Statistiky
| Větev: | Tag: | Revize:
1

    
2
# Created by https://www.toptal.com/developers/gitignore/api/pycharm+all,python
3
# Edit at https://www.toptal.com/developers/gitignore?templates=pycharm+all,python
4

    
5
### PyCharm+all ###
6
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
7
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
8

    
9
# User-specific stuff
10
.idea/**/workspace.xml
11
.idea/**/tasks.xml
12
.idea/**/usage.statistics.xml
13
.idea/**/dictionaries
14
.idea/**/shelf
15

    
16
# Generated files
17
.idea/**/contentModel.xml
18

    
19
# Sensitive or high-churn files
20
.idea/**/dataSources/
21
.idea/**/dataSources.ids
22
.idea/**/dataSources.local.xml
23
.idea/**/sqlDataSources.xml
24
.idea/**/dynamic.xml
25
.idea/**/uiDesigner.xml
26
.idea/**/dbnavigator.xml
27

    
28
# Gradle
29
.idea/**/gradle.xml
30
.idea/**/libraries
31

    
32
# Gradle and Maven with auto-import
33
# When using Gradle or Maven with auto-import, you should exclude module files,
34
# since they will be recreated, and may cause churn.  Uncomment if using
35
# auto-import.
36
# .idea/artifacts
37
# .idea/compiler.xml
38
# .idea/jarRepositories.xml
39
# .idea/modules.xml
40
# .idea/*.iml
41
# .idea/modules
42
# *.iml
43
# *.ipr
44

    
45
# CMake
46
cmake-build-*/
47

    
48
# Mongo Explorer plugin
49
.idea/**/mongoSettings.xml
50

    
51
# File-based project format
52
*.iws
53

    
54
# IntelliJ
55
out/
56

    
57
# mpeltonen/sbt-idea plugin
58
.idea_modules/
59

    
60
# JIRA plugin
61
atlassian-ide-plugin.xml
62

    
63
# Cursive Clojure plugin
64
.idea/replstate.xml
65

    
66
# Crashlytics plugin (for Android Studio and IntelliJ)
67
com_crashlytics_export_strings.xml
68
crashlytics.properties
69
crashlytics-build.properties
70
fabric.properties
71

    
72
# Editor-based Rest Client
73
.idea/httpRequests
74

    
75
# Android studio 3.1+ serialized cache file
76
.idea/caches/build_file_checksums.ser
77

    
78
### PyCharm+all Patch ###
79
# Ignores the whole .idea folder and all .iml files
80
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
81

    
82
.idea/
83

    
84
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
85

    
86
*.iml
87
modules.xml
88
.idea/misc.xml
89
*.ipr
90

    
91
# Sonarlint plugin
92
.idea/sonarlint
93

    
94
### Python ###
95
# Byte-compiled / optimized / DLL files
96
__pycache__/
97
*.py[cod]
98
*$py.class
99

    
100
# C extensions
101
*.so
102

    
103
# Distribution / packaging
104
.Python
105
build/
106
develop-eggs/
107
dist/
108
downloads/
109
eggs/
110
.eggs/
111
lib/
112
lib64/
113
parts/
114
sdist/
115
var/
116
wheels/
117
pip-wheel-metadata/
118
share/python-wheels/
119
*.egg-info/
120
.installed.cfg
121
*.egg
122
MANIFEST
123

    
124
# PyInstaller
125
#  Usually these files are written by a python script from a template
126
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
127
*.manifest
128
*.spec
129

    
130
# Installer logs
131
pip-log.txt
132
pip-delete-this-directory.txt
133

    
134
# Unit test / coverage reports
135
htmlcov/
136
.tox/
137
.nox/
138
.coverage
139
.coverage.*
140
.cache
141
nosetests.xml
142
coverage.xml
143
*.cover
144
*.py,cover
145
.hypothesis/
146
.pytest_cache/
147
pytestdebug.log
148

    
149
# Translations
150
*.mo
151
*.pot
152

    
153
# Django stuff:
154
*.log
155
local_settings.py
156
db.sqlite3
157
db.sqlite3-journal
158

    
159
# Flask stuff:
160
instance/
161
.webassets-cache
162

    
163
# Scrapy stuff:
164
.scrapy
165

    
166
# Sphinx documentation
167
docs/_build/
168
doc/_build/
169

    
170
# PyBuilder
171
target/
172

    
173
# Jupyter Notebook
174
.ipynb_checkpoints
175

    
176
# IPython
177
profile_default/
178
ipython_config.py
179

    
180
# pyenv
181
.python-version
182

    
183
# pipenv
184
#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
185
#   However, in case of collaboration, if having platform-specific dependencies or dependencies
186
#   having no cross-platform support, pipenv may install dependencies that don't work, or not
187
#   install all needed dependencies.
188
#Pipfile.lock
189

    
190
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
191
__pypackages__/
192

    
193
# Celery stuff
194
celerybeat-schedule
195
celerybeat.pid
196

    
197
# SageMath parsed files
198
*.sage.py
199

    
200
# Environments
201
.env
202
.venv
203
env/
204
venv/
205
ENV/
206
env.bak/
207
venv.bak/
208
pythonenv*
209

    
210
# Spyder project settings
211
.spyderproject
212
.spyproject
213

    
214
# Rope project settings
215
.ropeproject
216

    
217
# mkdocs documentation
218
/site
219

    
220
# mypy
221
.mypy_cache/
222
.dmypy.json
223
dmypy.json
224

    
225
# Pyre type checker
226
.pyre/
227

    
228
# pytype static type analyzer
229
.pytype/
230

    
231
# profiling data
232
.prof
233

    
234
# End of https://www.toptal.com/developers/gitignore/api/pycharm+all,python
235

    
236
###########
237

    
238
db/
(1-1/13)