Revize 984c67e5
Přidáno uživatelem Matěj Zeman před více než 2 roky(ů)
.gitignore | ||
---|---|---|
1 |
# Created by https://www.toptal.com/developers/gitignore/api/python,pycharm |
|
2 |
# Edit at https://www.toptal.com/developers/gitignore?templates=python,pycharm |
|
3 |
|
|
4 |
### PyCharm ### |
|
5 |
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider |
|
6 |
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 |
|
7 |
|
|
8 |
# User-specific stuff |
|
9 |
.idea/**/workspace.xml |
|
10 |
.idea/**/tasks.xml |
|
11 |
.idea/**/usage.statistics.xml |
|
12 |
.idea/**/dictionaries |
|
13 |
.idea/**/shelf |
|
14 |
|
|
15 |
# AWS User-specific |
|
16 |
.idea/**/aws.xml |
|
17 |
|
|
18 |
# Generated files |
|
19 |
.idea/**/contentModel.xml |
|
20 |
|
|
21 |
# Sensitive or high-churn files |
|
22 |
.idea/**/dataSources/ |
|
23 |
.idea/**/dataSources.ids |
|
24 |
.idea/**/dataSources.local.xml |
|
25 |
.idea/**/sqlDataSources.xml |
|
26 |
.idea/**/dynamic.xml |
|
27 |
.idea/**/uiDesigner.xml |
|
28 |
.idea/**/dbnavigator.xml |
|
29 |
|
|
30 |
# Gradle |
|
31 |
.idea/**/gradle.xml |
|
32 |
.idea/**/libraries |
|
33 |
|
|
34 |
# Gradle and Maven with auto-import |
|
35 |
# When using Gradle or Maven with auto-import, you should exclude module files, |
|
36 |
# since they will be recreated, and may cause churn. Uncomment if using |
|
37 |
# auto-import. |
|
38 |
# .idea/artifacts |
|
39 |
# .idea/compiler.xml |
|
40 |
# .idea/jarRepositories.xml |
|
41 |
# .idea/modules.xml |
|
42 |
# .idea/*.iml |
|
43 |
# .idea/modules |
|
44 |
# *.iml |
|
45 |
# *.ipr |
|
46 |
|
|
47 |
# CMake |
|
48 |
cmake-build-*/ |
|
49 |
|
|
50 |
# Mongo Explorer plugin |
|
51 |
.idea/**/mongoSettings.xml |
|
52 |
|
|
53 |
# File-based project format |
|
54 |
*.iws |
|
55 |
|
|
56 |
# IntelliJ |
|
57 |
out/ |
|
58 |
|
|
59 |
# mpeltonen/sbt-idea plugin |
|
60 |
.idea_modules/ |
|
61 |
|
|
62 |
# JIRA plugin |
|
63 |
atlassian-ide-plugin.xml |
|
64 |
|
|
65 |
# Cursive Clojure plugin |
|
66 |
.idea/replstate.xml |
|
67 |
|
|
68 |
# SonarLint plugin |
|
69 |
.idea/sonarlint/ |
|
70 |
|
|
71 |
# Crashlytics plugin (for Android Studio and IntelliJ) |
|
72 |
com_crashlytics_export_strings.xml |
|
73 |
crashlytics.properties |
|
74 |
crashlytics-build.properties |
|
75 |
fabric.properties |
|
76 |
|
|
77 |
# Editor-based Rest Client |
|
78 |
.idea/httpRequests |
|
79 |
|
|
80 |
# Android studio 3.1+ serialized cache file |
|
81 |
.idea/caches/build_file_checksums.ser |
|
82 |
|
|
83 |
### PyCharm Patch ### |
|
84 |
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 |
|
85 |
|
|
86 |
# *.iml |
|
87 |
# modules.xml |
|
88 |
# .idea/misc.xml |
|
89 |
# *.ipr |
|
90 |
|
|
91 |
# Sonarlint plugin |
|
92 |
# https://plugins.jetbrains.com/plugin/7973-sonarlint |
|
93 |
.idea/**/sonarlint/ |
|
94 |
|
|
95 |
# SonarQube Plugin |
|
96 |
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin |
|
97 |
.idea/**/sonarIssues.xml |
|
98 |
|
|
99 |
# Markdown Navigator plugin |
|
100 |
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced |
|
101 |
.idea/**/markdown-navigator.xml |
|
102 |
.idea/**/markdown-navigator-enh.xml |
|
103 |
.idea/**/markdown-navigator/ |
|
104 |
|
|
105 |
# Cache file creation bug |
|
106 |
# See https://youtrack.jetbrains.com/issue/JBR-2257 |
|
107 |
.idea/$CACHE_FILE$ |
|
108 |
|
|
109 |
# CodeStream plugin |
|
110 |
# https://plugins.jetbrains.com/plugin/12206-codestream |
|
111 |
.idea/codestream.xml |
|
112 |
|
|
113 |
### Python ### |
|
114 |
# Byte-compiled / optimized / DLL files |
|
115 |
__pycache__/ |
|
116 |
*.py[cod] |
|
117 |
*$py.class |
|
118 |
|
|
119 |
# C extensions |
|
120 |
*.so |
|
121 |
|
|
122 |
# Distribution / packaging |
|
123 |
.Python |
|
124 |
build/ |
|
125 |
develop-eggs/ |
|
126 |
dist/ |
|
127 |
downloads/ |
|
128 |
eggs/ |
|
129 |
.eggs/ |
|
130 |
lib/ |
|
131 |
lib64/ |
|
132 |
parts/ |
|
133 |
sdist/ |
|
134 |
var/ |
|
135 |
wheels/ |
|
136 |
share/python-wheels/ |
|
137 |
*.egg-info/ |
|
138 |
.installed.cfg |
|
139 |
*.egg |
|
140 |
MANIFEST |
|
141 |
|
|
142 |
# PyInstaller |
|
143 |
# Usually these files are written by a python script from a template |
|
144 |
# before PyInstaller builds the exe, so as to inject date/other infos into it. |
|
145 |
*.manifest |
|
146 |
*.spec |
|
147 |
|
|
148 |
# Installer logs |
|
149 |
pip-log.txt |
|
150 |
pip-delete-this-directory.txt |
|
151 |
|
|
152 |
# Unit test / coverage reports |
|
153 |
htmlcov/ |
|
154 |
.tox/ |
|
155 |
.nox/ |
|
156 |
.coverage |
|
157 |
.coverage.* |
|
158 |
.cache |
|
159 |
nosetests.xml |
|
160 |
coverage.xml |
|
161 |
*.cover |
|
162 |
*.py,cover |
|
163 |
.hypothesis/ |
|
164 |
.pytest_cache/ |
|
165 |
cover/ |
|
166 |
|
|
167 |
# Translations |
|
168 |
*.mo |
|
169 |
*.pot |
|
170 |
|
|
171 |
# Django stuff: |
|
172 |
*.log |
|
173 |
local_settings.py |
|
174 |
db.sqlite3 |
|
175 |
db.sqlite3-journal |
|
176 |
|
|
177 |
# Flask stuff: |
|
178 |
instance/ |
|
179 |
.webassets-cache |
|
180 |
|
|
181 |
# Scrapy stuff: |
|
182 |
.scrapy |
|
183 |
|
|
184 |
# Sphinx documentation |
|
185 |
docs/_build/ |
|
186 |
|
|
187 |
# PyBuilder |
|
188 |
.pybuilder/ |
|
189 |
target/ |
|
190 |
|
|
191 |
# Jupyter Notebook |
|
192 |
.ipynb_checkpoints |
|
193 |
|
|
194 |
# IPython |
|
195 |
profile_default/ |
|
196 |
ipython_config.py |
|
197 |
|
|
198 |
# pyenv |
|
199 |
# For a library or package, you might want to ignore these files since the code is |
|
200 |
# intended to run in multiple environments; otherwise, check them in: |
|
201 |
# .python-version |
|
202 |
|
|
203 |
# pipenv |
|
204 |
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. |
|
205 |
# However, in case of collaboration, if having platform-specific dependencies or dependencies |
|
206 |
# having no cross-platform support, pipenv may install dependencies that don't work, or not |
|
207 |
# install all needed dependencies. |
|
208 |
#Pipfile.lock |
|
209 |
|
|
210 |
# poetry |
|
211 |
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. |
|
212 |
# This is especially recommended for binary packages to ensure reproducibility, and is more |
|
213 |
# commonly ignored for libraries. |
|
214 |
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control |
|
215 |
#poetry.lock |
|
216 |
|
|
217 |
# PEP 582; used by e.g. github.com/David-OConnor/pyflow |
|
218 |
__pypackages__/ |
|
219 |
|
|
220 |
# Celery stuff |
|
221 |
celerybeat-schedule |
|
222 |
celerybeat.pid |
|
223 |
|
|
224 |
# SageMath parsed files |
|
225 |
*.sage.py |
|
226 |
|
|
227 |
# Environments |
|
228 |
.env |
|
229 |
.venv |
|
230 |
env/ |
|
231 |
venv/ |
|
232 |
ENV/ |
|
233 |
env.bak/ |
|
234 |
venv.bak/ |
|
235 |
|
|
236 |
# Spyder project settings |
|
237 |
.spyderproject |
|
238 |
.spyproject |
|
239 |
|
|
240 |
# Rope project settings |
|
241 |
.ropeproject |
|
242 |
|
|
243 |
# mkdocs documentation |
|
244 |
/site |
|
245 |
|
|
246 |
# mypy |
|
247 |
.mypy_cache/ |
|
248 |
.dmypy.json |
|
249 |
dmypy.json |
|
250 |
|
|
251 |
# Pyre type checker |
|
252 |
.pyre/ |
|
253 |
|
|
254 |
# pytype static type analyzer |
|
255 |
.pytype/ |
|
256 |
|
|
257 |
# Cython debug symbols |
|
258 |
cython_debug/ |
|
259 |
|
|
260 |
# PyCharm |
|
261 |
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can |
|
262 |
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore |
|
263 |
# and can be added to the global gitignore or merged into this file. For a more nuclear |
|
264 |
# option (not recommended) you can uncomment the following to ignore the entire idea folder. |
|
265 |
#.idea/ |
|
266 |
|
|
267 |
# End of https://www.toptal.com/developers/gitignore/api/python,pycharm |
|
1 |
# Created by https://www.toptal.com/developers/gitignore/api/python,pycharm+iml,visualstudiocode,visualstudio,linux,windows,pycharm+all,java |
|
2 |
# Edit at https://www.toptal.com/developers/gitignore?templates=python,pycharm+iml,visualstudiocode,visualstudio,linux,windows,pycharm+all,java |
|
3 |
|
|
4 |
### Java ### |
|
5 |
# Compiled class file |
|
6 |
*.class |
|
7 |
|
|
8 |
# Log file |
|
9 |
*.log |
|
10 |
|
|
11 |
# BlueJ files |
|
12 |
*.ctxt |
|
13 |
|
|
14 |
# Mobile Tools for Java (J2ME) |
|
15 |
.mtj.tmp/ |
|
16 |
|
|
17 |
# Package Files # |
|
18 |
*.jar |
|
19 |
*.war |
|
20 |
*.nar |
|
21 |
*.ear |
|
22 |
*.zip |
|
23 |
*.tar.gz |
|
24 |
*.rar |
|
25 |
|
|
26 |
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml |
|
27 |
hs_err_pid* |
|
28 |
replay_pid* |
|
29 |
|
|
30 |
### Linux ### |
|
31 |
*~ |
|
32 |
|
|
33 |
# temporary files which can be created if a process still has a handle open of a deleted file |
|
34 |
.fuse_hidden* |
|
35 |
|
|
36 |
# KDE directory preferences |
|
37 |
.directory |
|
38 |
|
|
39 |
# Linux trash folder which might appear on any partition or disk |
|
40 |
.Trash-* |
|
41 |
|
|
42 |
# .nfs files are created when an open file is removed but is still being accessed |
|
43 |
.nfs* |
|
44 |
|
|
45 |
### PyCharm+all ### |
|
46 |
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider |
|
47 |
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 |
|
48 |
|
|
49 |
# User-specific stuff |
|
50 |
.idea/**/workspace.xml |
|
51 |
.idea/**/tasks.xml |
|
52 |
.idea/**/usage.statistics.xml |
|
53 |
.idea/**/dictionaries |
|
54 |
.idea/**/shelf |
|
55 |
|
|
56 |
# AWS User-specific |
|
57 |
.idea/**/aws.xml |
|
58 |
|
|
59 |
# Generated files |
|
60 |
.idea/**/contentModel.xml |
|
61 |
|
|
62 |
# Sensitive or high-churn files |
|
63 |
.idea/**/dataSources/ |
|
64 |
.idea/**/dataSources.ids |
|
65 |
.idea/**/dataSources.local.xml |
|
66 |
.idea/**/sqlDataSources.xml |
|
67 |
.idea/**/dynamic.xml |
|
68 |
.idea/**/uiDesigner.xml |
|
69 |
.idea/**/dbnavigator.xml |
|
70 |
|
|
71 |
# Gradle |
|
72 |
.idea/**/gradle.xml |
|
73 |
.idea/**/libraries |
|
74 |
|
|
75 |
# Gradle and Maven with auto-import |
|
76 |
# When using Gradle or Maven with auto-import, you should exclude module files, |
|
77 |
# since they will be recreated, and may cause churn. Uncomment if using |
|
78 |
# auto-import. |
|
79 |
# .idea/artifacts |
|
80 |
# .idea/compiler.xml |
|
81 |
# .idea/jarRepositories.xml |
|
82 |
# .idea/modules.xml |
|
83 |
# .idea/*.iml |
|
84 |
# .idea/modules |
|
85 |
# *.iml |
|
86 |
# *.ipr |
|
87 |
|
|
88 |
# CMake |
|
89 |
cmake-build-*/ |
|
90 |
|
|
91 |
# Mongo Explorer plugin |
|
92 |
.idea/**/mongoSettings.xml |
|
93 |
|
|
94 |
# File-based project format |
|
95 |
*.iws |
|
96 |
|
|
97 |
# IntelliJ |
|
98 |
out/ |
|
99 |
|
|
100 |
# mpeltonen/sbt-idea plugin |
|
101 |
.idea_modules/ |
|
102 |
|
|
103 |
# JIRA plugin |
|
104 |
atlassian-ide-plugin.xml |
|
105 |
|
|
106 |
# Cursive Clojure plugin |
|
107 |
.idea/replstate.xml |
|
108 |
|
|
109 |
# SonarLint plugin |
|
110 |
.idea/sonarlint/ |
|
111 |
|
|
112 |
# Crashlytics plugin (for Android Studio and IntelliJ) |
|
113 |
com_crashlytics_export_strings.xml |
|
114 |
crashlytics.properties |
|
115 |
crashlytics-build.properties |
|
116 |
fabric.properties |
|
117 |
|
|
118 |
# Editor-based Rest Client |
|
119 |
.idea/httpRequests |
|
120 |
|
|
121 |
# Android studio 3.1+ serialized cache file |
|
122 |
.idea/caches/build_file_checksums.ser |
|
123 |
|
|
124 |
### PyCharm+all Patch ### |
|
125 |
# Ignore everything but code style settings and run configurations |
|
126 |
# that are supposed to be shared within teams. |
|
127 |
|
|
128 |
.idea/* |
|
129 |
|
|
130 |
!.idea/codeStyles |
|
131 |
!.idea/runConfigurations |
|
132 |
|
|
133 |
### PyCharm+iml ### |
|
134 |
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider |
|
135 |
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 |
|
136 |
|
|
137 |
# User-specific stuff |
|
138 |
|
|
139 |
# AWS User-specific |
|
140 |
|
|
141 |
# Generated files |
|
142 |
|
|
143 |
# Sensitive or high-churn files |
|
144 |
|
|
145 |
# Gradle |
|
146 |
|
|
147 |
# Gradle and Maven with auto-import |
|
148 |
# When using Gradle or Maven with auto-import, you should exclude module files, |
|
149 |
# since they will be recreated, and may cause churn. Uncomment if using |
|
150 |
# auto-import. |
|
151 |
# .idea/artifacts |
|
152 |
# .idea/compiler.xml |
|
153 |
# .idea/jarRepositories.xml |
|
154 |
# .idea/modules.xml |
|
155 |
# .idea/*.iml |
|
156 |
# .idea/modules |
|
157 |
# *.iml |
|
158 |
# *.ipr |
|
159 |
|
|
160 |
# CMake |
|
161 |
|
|
162 |
# Mongo Explorer plugin |
|
163 |
|
|
164 |
# File-based project format |
|
165 |
|
|
166 |
# IntelliJ |
|
167 |
|
|
168 |
# mpeltonen/sbt-idea plugin |
|
169 |
|
|
170 |
# JIRA plugin |
|
171 |
|
|
172 |
# Cursive Clojure plugin |
|
173 |
|
|
174 |
# SonarLint plugin |
|
175 |
|
|
176 |
# Crashlytics plugin (for Android Studio and IntelliJ) |
|
177 |
|
|
178 |
# Editor-based Rest Client |
|
179 |
|
|
180 |
# Android studio 3.1+ serialized cache file |
|
181 |
|
|
182 |
### PyCharm+iml Patch ### |
|
183 |
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023 |
|
184 |
|
|
185 |
*.iml |
|
186 |
modules.xml |
|
187 |
.idea/misc.xml |
|
188 |
*.ipr |
|
189 |
|
|
190 |
### Python ### |
|
191 |
# Byte-compiled / optimized / DLL files |
|
192 |
__pycache__/ |
|
193 |
*.py[cod] |
|
194 |
*$py.class |
|
195 |
|
|
196 |
# C extensions |
|
197 |
*.so |
|
198 |
|
|
199 |
# Distribution / packaging |
|
200 |
.Python |
|
201 |
build/ |
|
202 |
develop-eggs/ |
|
203 |
dist/ |
|
204 |
downloads/ |
|
205 |
eggs/ |
|
206 |
.eggs/ |
|
207 |
lib/ |
|
208 |
lib64/ |
|
209 |
parts/ |
|
210 |
sdist/ |
|
211 |
var/ |
|
212 |
wheels/ |
|
213 |
share/python-wheels/ |
|
214 |
*.egg-info/ |
|
215 |
.installed.cfg |
|
216 |
*.egg |
|
217 |
MANIFEST |
|
218 |
|
|
219 |
# PyInstaller |
|
220 |
# Usually these files are written by a python script from a template |
|
221 |
# before PyInstaller builds the exe, so as to inject date/other infos into it. |
|
222 |
*.manifest |
|
223 |
*.spec |
|
224 |
|
|
225 |
# Installer logs |
|
226 |
pip-log.txt |
|
227 |
pip-delete-this-directory.txt |
|
228 |
|
|
229 |
# Unit test / coverage reports |
|
230 |
htmlcov/ |
|
231 |
.tox/ |
|
232 |
.nox/ |
|
233 |
.coverage |
|
234 |
.coverage.* |
|
235 |
.cache |
|
236 |
nosetests.xml |
|
237 |
coverage.xml |
|
238 |
*.cover |
|
239 |
*.py,cover |
|
240 |
.hypothesis/ |
|
241 |
.pytest_cache/ |
|
242 |
cover/ |
|
243 |
|
|
244 |
# Translations |
|
245 |
*.mo |
|
246 |
*.pot |
|
247 |
|
|
248 |
# Django stuff: |
|
249 |
local_settings.py |
|
250 |
db.sqlite3 |
|
251 |
db.sqlite3-journal |
|
252 |
|
|
253 |
# Flask stuff: |
|
254 |
instance/ |
|
255 |
.webassets-cache |
|
256 |
|
|
257 |
# Scrapy stuff: |
|
258 |
.scrapy |
|
259 |
|
|
260 |
# Sphinx documentation |
|
261 |
docs/_build/ |
|
262 |
|
|
263 |
# PyBuilder |
|
264 |
.pybuilder/ |
|
265 |
target/ |
|
266 |
|
|
267 |
# Jupyter Notebook |
|
268 |
.ipynb_checkpoints |
|
269 |
|
|
270 |
# IPython |
|
271 |
profile_default/ |
|
272 |
ipython_config.py |
|
273 |
|
|
274 |
# pyenv |
|
275 |
# For a library or package, you might want to ignore these files since the code is |
|
276 |
# intended to run in multiple environments; otherwise, check them in: |
|
277 |
# .python-version |
|
278 |
|
|
279 |
# pipenv |
|
280 |
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. |
|
281 |
# However, in case of collaboration, if having platform-specific dependencies or dependencies |
|
282 |
# having no cross-platform support, pipenv may install dependencies that don't work, or not |
|
283 |
# install all needed dependencies. |
|
284 |
#Pipfile.lock |
|
285 |
|
|
286 |
# poetry |
|
287 |
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. |
|
288 |
# This is especially recommended for binary packages to ensure reproducibility, and is more |
|
289 |
# commonly ignored for libraries. |
|
290 |
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control |
|
291 |
#poetry.lock |
|
292 |
|
|
293 |
# PEP 582; used by e.g. github.com/David-OConnor/pyflow |
|
294 |
__pypackages__/ |
|
295 |
|
|
296 |
# Celery stuff |
|
297 |
celerybeat-schedule |
|
298 |
celerybeat.pid |
|
299 |
|
|
300 |
# SageMath parsed files |
|
301 |
*.sage.py |
|
302 |
|
|
303 |
# Environments |
|
304 |
.env |
|
305 |
.venv |
|
306 |
env/ |
|
307 |
venv/ |
|
308 |
ENV/ |
|
309 |
env.bak/ |
|
310 |
venv.bak/ |
|
311 |
|
|
312 |
# Spyder project settings |
|
313 |
.spyderproject |
|
314 |
.spyproject |
|
315 |
|
|
316 |
# Rope project settings |
|
317 |
.ropeproject |
|
318 |
|
|
319 |
# mkdocs documentation |
|
320 |
/site |
|
321 |
|
|
322 |
# mypy |
|
323 |
.mypy_cache/ |
|
324 |
.dmypy.json |
|
325 |
dmypy.json |
|
326 |
|
|
327 |
# Pyre type checker |
|
328 |
.pyre/ |
|
329 |
|
|
330 |
# pytype static type analyzer |
|
331 |
.pytype/ |
|
332 |
|
|
333 |
# Cython debug symbols |
|
334 |
cython_debug/ |
|
335 |
|
|
336 |
# PyCharm |
|
337 |
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can |
|
338 |
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore |
|
339 |
# and can be added to the global gitignore or merged into this file. For a more nuclear |
|
340 |
# option (not recommended) you can uncomment the following to ignore the entire idea folder. |
|
341 |
.idea/ |
|
342 |
|
|
343 |
### VisualStudioCode ### |
|
344 |
.vscode/* |
|
345 |
!.vscode/settings.json |
|
346 |
!.vscode/tasks.json |
|
347 |
!.vscode/launch.json |
|
348 |
!.vscode/extensions.json |
|
349 |
!.vscode/*.code-snippets |
|
350 |
|
|
351 |
# Local History for Visual Studio Code |
|
352 |
.history/ |
|
353 |
|
|
354 |
# Built Visual Studio Code Extensions |
|
355 |
*.vsix |
|
356 |
|
|
357 |
### VisualStudioCode Patch ### |
|
358 |
# Ignore all local history of files |
|
359 |
.history |
|
360 |
.ionide |
|
361 |
|
|
362 |
# Support for Project snippet scope |
|
363 |
|
|
364 |
### Windows ### |
|
365 |
# Windows thumbnail cache files |
|
366 |
Thumbs.db |
|
367 |
Thumbs.db:encryptable |
|
368 |
ehthumbs.db |
|
369 |
ehthumbs_vista.db |
|
370 |
|
|
371 |
# Dump file |
|
372 |
*.stackdump |
|
373 |
|
|
374 |
# Folder config file |
|
375 |
[Dd]esktop.ini |
|
376 |
|
|
377 |
# Recycle Bin used on file shares |
|
378 |
$RECYCLE.BIN/ |
|
379 |
|
|
380 |
# Windows Installer files |
|
381 |
*.cab |
|
382 |
*.msi |
|
383 |
*.msix |
|
384 |
*.msm |
|
385 |
*.msp |
|
386 |
|
|
387 |
# Windows shortcuts |
|
388 |
*.lnk |
|
389 |
|
|
390 |
### VisualStudio ### |
|
391 |
## Ignore Visual Studio temporary files, build results, and |
|
392 |
## files generated by popular Visual Studio add-ons. |
|
393 |
## |
|
394 |
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore |
|
395 |
|
|
396 |
# User-specific files |
|
397 |
*.rsuser |
|
398 |
*.suo |
|
399 |
*.user |
|
400 |
*.userosscache |
|
401 |
*.sln.docstates |
|
402 |
|
|
403 |
# User-specific files (MonoDevelop/Xamarin Studio) |
|
404 |
*.userprefs |
|
405 |
|
|
406 |
# Mono auto generated files |
|
407 |
mono_crash.* |
|
408 |
|
|
409 |
# Build results |
|
410 |
[Dd]ebug/ |
|
411 |
[Dd]ebugPublic/ |
|
412 |
[Rr]elease/ |
|
413 |
[Rr]eleases/ |
|
414 |
x64/ |
|
415 |
x86/ |
|
416 |
[Ww][Ii][Nn]32/ |
|
417 |
[Aa][Rr][Mm]/ |
|
418 |
[Aa][Rr][Mm]64/ |
|
419 |
bld/ |
|
420 |
[Bb]in/ |
|
421 |
[Oo]bj/ |
|
422 |
[Ll]og/ |
|
423 |
[Ll]ogs/ |
|
424 |
|
|
425 |
# Visual Studio 2015/2017 cache/options directory |
|
426 |
.vs/ |
|
427 |
# Uncomment if you have tasks that create the project's static files in wwwroot |
|
428 |
#wwwroot/ |
|
429 |
|
|
430 |
# Visual Studio 2017 auto generated files |
|
431 |
Generated\ Files/ |
|
432 |
|
|
433 |
# MSTest test Results |
|
434 |
[Tt]est[Rr]esult*/ |
|
435 |
[Bb]uild[Ll]og.* |
|
436 |
|
|
437 |
# NUnit |
|
438 |
*.VisualState.xml |
|
439 |
TestResult.xml |
|
440 |
nunit-*.xml |
|
441 |
|
|
442 |
# Build Results of an ATL Project |
|
443 |
[Dd]ebugPS/ |
|
444 |
[Rr]eleasePS/ |
|
445 |
dlldata.c |
|
446 |
|
|
447 |
# Benchmark Results |
|
448 |
BenchmarkDotNet.Artifacts/ |
|
449 |
|
|
450 |
# .NET Core |
|
451 |
project.lock.json |
|
452 |
project.fragment.lock.json |
|
453 |
artifacts/ |
|
454 |
|
|
455 |
# ASP.NET Scaffolding |
|
456 |
ScaffoldingReadMe.txt |
|
457 |
|
|
458 |
# StyleCop |
|
459 |
StyleCopReport.xml |
|
460 |
|
|
461 |
# Files built by Visual Studio |
|
462 |
*_i.c |
|
463 |
*_p.c |
|
464 |
*_h.h |
|
465 |
*.ilk |
|
466 |
*.meta |
|
467 |
*.obj |
|
468 |
*.iobj |
|
469 |
*.pch |
|
470 |
*.pdb |
|
471 |
*.ipdb |
|
472 |
*.pgc |
|
473 |
*.pgd |
|
474 |
*.rsp |
|
475 |
*.sbr |
|
476 |
*.tlb |
|
477 |
*.tli |
|
478 |
*.tlh |
|
479 |
*.tmp |
|
480 |
*.tmp_proj |
|
481 |
*_wpftmp.csproj |
|
482 |
*.tlog |
|
483 |
*.vspscc |
|
484 |
*.vssscc |
|
485 |
.builds |
|
486 |
*.pidb |
|
487 |
*.svclog |
|
488 |
*.scc |
|
489 |
|
|
490 |
# Chutzpah Test files |
|
491 |
_Chutzpah* |
|
492 |
|
|
493 |
# Visual C++ cache files |
|
494 |
ipch/ |
|
495 |
*.aps |
|
496 |
*.ncb |
|
497 |
*.opendb |
|
498 |
*.opensdf |
|
499 |
*.sdf |
|
500 |
*.cachefile |
|
501 |
*.VC.db |
|
502 |
*.VC.VC.opendb |
|
503 |
|
|
504 |
# Visual Studio profiler |
|
505 |
*.psess |
|
506 |
*.vsp |
|
507 |
*.vspx |
|
508 |
*.sap |
|
509 |
|
|
510 |
# Visual Studio Trace Files |
|
511 |
*.e2e |
|
512 |
|
|
513 |
# TFS 2012 Local Workspace |
|
514 |
$tf/ |
|
515 |
|
|
516 |
# Guidance Automation Toolkit |
|
517 |
*.gpState |
|
518 |
|
|
519 |
# ReSharper is a .NET coding add-in |
|
520 |
_ReSharper*/ |
|
521 |
*.[Rr]e[Ss]harper |
|
522 |
*.DotSettings.user |
|
523 |
|
|
524 |
# TeamCity is a build add-in |
|
525 |
_TeamCity* |
|
526 |
|
|
527 |
# DotCover is a Code Coverage Tool |
|
528 |
*.dotCover |
|
529 |
|
|
530 |
# AxoCover is a Code Coverage Tool |
|
531 |
.axoCover/* |
|
532 |
!.axoCover/settings.json |
|
533 |
|
|
534 |
# Coverlet is a free, cross platform Code Coverage Tool |
|
535 |
coverage*.json |
|
536 |
coverage*.xml |
|
537 |
coverage*.info |
|
538 |
|
|
539 |
# Visual Studio code coverage results |
|
540 |
*.coverage |
|
541 |
*.coveragexml |
|
542 |
|
|
543 |
# NCrunch |
|
544 |
_NCrunch_* |
|
545 |
.*crunch*.local.xml |
|
546 |
nCrunchTemp_* |
|
547 |
|
|
548 |
# MightyMoose |
|
549 |
*.mm.* |
|
550 |
AutoTest.Net/ |
|
551 |
|
|
552 |
# Web workbench (sass) |
|
553 |
.sass-cache/ |
|
554 |
|
|
555 |
# Installshield output folder |
|
556 |
[Ee]xpress/ |
|
557 |
|
|
558 |
# DocProject is a documentation generator add-in |
|
559 |
DocProject/buildhelp/ |
|
560 |
DocProject/Help/*.HxT |
|
561 |
DocProject/Help/*.HxC |
|
562 |
DocProject/Help/*.hhc |
|
563 |
DocProject/Help/*.hhk |
|
564 |
DocProject/Help/*.hhp |
|
565 |
DocProject/Help/Html2 |
|
566 |
DocProject/Help/html |
|
567 |
|
|
568 |
# Click-Once directory |
|
569 |
publish/ |
|
570 |
|
|
571 |
# Publish Web Output |
|
572 |
*.[Pp]ublish.xml |
|
573 |
*.azurePubxml |
|
574 |
# Note: Comment the next line if you want to checkin your web deploy settings, |
|
575 |
# but database connection strings (with potential passwords) will be unencrypted |
|
576 |
*.pubxml |
|
577 |
*.publishproj |
|
578 |
|
|
579 |
# Microsoft Azure Web App publish settings. Comment the next line if you want to |
|
580 |
# checkin your Azure Web App publish settings, but sensitive information contained |
|
581 |
# in these scripts will be unencrypted |
|
582 |
PublishScripts/ |
|
583 |
|
|
584 |
# NuGet Packages |
|
585 |
*.nupkg |
|
586 |
# NuGet Symbol Packages |
|
587 |
*.snupkg |
|
588 |
# The packages folder can be ignored because of Package Restore |
|
589 |
**/[Pp]ackages/* |
|
590 |
# except build/, which is used as an MSBuild target. |
|
591 |
!**/[Pp]ackages/build/ |
|
592 |
# Uncomment if necessary however generally it will be regenerated when needed |
|
593 |
#!**/[Pp]ackages/repositories.config |
|
594 |
# NuGet v3's project.json files produces more ignorable files |
|
595 |
*.nuget.props |
|
596 |
*.nuget.targets |
|
597 |
|
|
598 |
# Microsoft Azure Build Output |
|
599 |
csx/ |
|
600 |
*.build.csdef |
|
601 |
|
|
602 |
# Microsoft Azure Emulator |
|
603 |
ecf/ |
|
604 |
rcf/ |
|
605 |
|
|
606 |
# Windows Store app package directories and files |
|
607 |
AppPackages/ |
|
608 |
BundleArtifacts/ |
|
609 |
Package.StoreAssociation.xml |
|
610 |
_pkginfo.txt |
|
611 |
*.appx |
|
612 |
*.appxbundle |
|
613 |
*.appxupload |
|
614 |
|
|
615 |
# Visual Studio cache files |
|
616 |
# files ending in .cache can be ignored |
|
617 |
*.[Cc]ache |
|
618 |
# but keep track of directories ending in .cache |
|
619 |
!?*.[Cc]ache/ |
|
620 |
|
|
621 |
# Others |
|
622 |
ClientBin/ |
|
623 |
~$* |
|
624 |
*.dbmdl |
|
625 |
*.dbproj.schemaview |
|
626 |
*.jfm |
|
627 |
*.pfx |
|
628 |
*.publishsettings |
|
629 |
orleans.codegen.cs |
|
630 |
|
|
631 |
# Including strong name files can present a security risk |
|
632 |
# (https://github.com/github/gitignore/pull/2483#issue-259490424) |
|
633 |
#*.snk |
|
634 |
|
|
635 |
# Since there are multiple workflows, uncomment next line to ignore bower_components |
|
636 |
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) |
|
637 |
#bower_components/ |
|
638 |
|
|
639 |
# RIA/Silverlight projects |
|
640 |
Generated_Code/ |
|
641 |
|
|
642 |
# Backup & report files from converting an old project file |
|
643 |
# to a newer Visual Studio version. Backup files are not needed, |
|
644 |
# because we have git ;-) |
|
645 |
_UpgradeReport_Files/ |
|
646 |
Backup*/ |
|
647 |
UpgradeLog*.XML |
|
648 |
UpgradeLog*.htm |
|
649 |
ServiceFabricBackup/ |
|
650 |
*.rptproj.bak |
|
651 |
|
|
652 |
# SQL Server files |
|
653 |
*.mdf |
|
654 |
*.ldf |
|
655 |
*.ndf |
|
656 |
|
|
657 |
# Business Intelligence projects |
|
658 |
*.rdl.data |
|
659 |
*.bim.layout |
|
660 |
*.bim_*.settings |
|
661 |
*.rptproj.rsuser |
|
662 |
*- [Bb]ackup.rdl |
|
663 |
*- [Bb]ackup ([0-9]).rdl |
|
664 |
*- [Bb]ackup ([0-9][0-9]).rdl |
|
665 |
|
|
666 |
# Microsoft Fakes |
|
667 |
FakesAssemblies/ |
|
668 |
|
|
669 |
# GhostDoc plugin setting file |
|
670 |
*.GhostDoc.xml |
|
671 |
|
|
672 |
# Node.js Tools for Visual Studio |
|
673 |
.ntvs_analysis.dat |
|
674 |
node_modules/ |
|
675 |
|
|
676 |
# Visual Studio 6 build log |
|
677 |
*.plg |
|
678 |
|
|
679 |
# Visual Studio 6 workspace options file |
|
680 |
*.opt |
|
681 |
|
|
682 |
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) |
|
683 |
*.vbw |
|
684 |
|
|
685 |
# Visual Studio 6 auto-generated project file (contains which files were open etc.) |
|
686 |
*.vbp |
|
687 |
|
|
688 |
# Visual Studio 6 workspace and project file (working project files containing files to include in project) |
|
689 |
*.dsw |
|
690 |
*.dsp |
|
691 |
|
|
692 |
# Visual Studio 6 technical files |
|
693 |
|
|
694 |
# Visual Studio LightSwitch build output |
|
695 |
**/*.HTMLClient/GeneratedArtifacts |
|
696 |
**/*.DesktopClient/GeneratedArtifacts |
|
697 |
**/*.DesktopClient/ModelManifest.xml |
|
698 |
**/*.Server/GeneratedArtifacts |
|
699 |
**/*.Server/ModelManifest.xml |
|
700 |
_Pvt_Extensions |
|
701 |
|
|
702 |
# Paket dependency manager |
|
703 |
.paket/paket.exe |
|
704 |
paket-files/ |
|
705 |
|
|
706 |
# FAKE - F# Make |
|
707 |
.fake/ |
|
708 |
|
|
709 |
# CodeRush personal settings |
|
710 |
.cr/personal |
|
711 |
|
|
712 |
# Python Tools for Visual Studio (PTVS) |
|
713 |
*.pyc |
|
714 |
|
|
715 |
# Cake - Uncomment if you are using it |
|
716 |
# tools/** |
|
717 |
# !tools/packages.config |
|
718 |
|
|
719 |
# Tabs Studio |
|
720 |
*.tss |
|
721 |
|
|
722 |
# Telerik's JustMock configuration file |
|
723 |
*.jmconfig |
|
724 |
|
|
725 |
# BizTalk build output |
|
726 |
*.btp.cs |
|
727 |
*.btm.cs |
|
728 |
*.odx.cs |
|
729 |
*.xsd.cs |
|
730 |
|
|
731 |
# OpenCover UI analysis results |
|
732 |
OpenCover/ |
|
733 |
|
|
734 |
# Azure Stream Analytics local run output |
|
735 |
ASALocalRun/ |
|
736 |
|
|
737 |
# MSBuild Binary and Structured Log |
|
738 |
*.binlog |
|
739 |
|
|
740 |
# NVidia Nsight GPU debugger configuration file |
|
741 |
*.nvuser |
|
742 |
|
|
743 |
# MFractors (Xamarin productivity tool) working folder |
|
744 |
.mfractor/ |
|
745 |
|
|
746 |
# Local History for Visual Studio |
|
747 |
.localhistory/ |
|
748 |
|
|
749 |
# Visual Studio History (VSHistory) files |
|
750 |
.vshistory/ |
|
751 |
|
|
752 |
# BeatPulse healthcheck temp database |
|
753 |
healthchecksdb |
|
754 |
|
|
755 |
# Backup folder for Package Reference Convert tool in Visual Studio 2017 |
|
756 |
MigrationBackup/ |
|
757 |
|
|
758 |
# Ionide (cross platform F# VS Code tools) working folder |
|
759 |
.ionide/ |
|
760 |
|
|
761 |
# Fody - auto-generated XML schema |
|
762 |
FodyWeavers.xsd |
|
763 |
|
|
764 |
# VS Code files for those working on multiple tools |
|
765 |
*.code-workspace |
|
766 |
|
|
767 |
# Local History for Visual Studio Code |
|
768 |
|
|
769 |
# Windows Installer files from build outputs |
|
770 |
|
|
771 |
# JetBrains Rider |
|
772 |
*.sln.iml |
|
773 |
|
|
774 |
### VisualStudio Patch ### |
|
775 |
# Additional files built by Visual Studio |
|
776 |
|
|
777 |
# End of https://www.toptal.com/developers/gitignore/api/python,pycharm+iml,visualstudiocode,visualstudio,linux,windows,pycharm+all,java |
Také k dispozici: Unified diff
re #9304 Project .gitignore file