Projekt

Obecné

Profil

« Předchozí | Další » 

Revize ed534dc7

Přidáno uživatelem Jakub Šilhavý před více než 2 roky(ů)

re #9305 Added .gitignore

Zobrazit rozdíly:

client/.gitignore
1

  
2
# Created by https://www.toptal.com/developers/gitignore/api/python,visualstudiocode,pycharm,linux,windows,macos,venv
3
# Edit at https://www.toptal.com/developers/gitignore?templates=python,visualstudiocode,pycharm,linux,windows,macos,venv
4

  
5
### Linux ###
6
*~
7

  
8
# temporary files which can be created if a process still has a handle open of a deleted file
9
.fuse_hidden*
10

  
11
# KDE directory preferences
12
.directory
13

  
14
# Linux trash folder which might appear on any partition or disk
15
.Trash-*
16

  
17
# .nfs files are created when an open file is removed but is still being accessed
18
.nfs*
19

  
20
### macOS ###
21
# General
22
.DS_Store
23
.AppleDouble
24
.LSOverride
25

  
26
# Icon must end with two \r
27
Icon
28

  
29

  
30
# Thumbnails
31
._*
32

  
33
# Files that might appear in the root of a volume
34
.DocumentRevisions-V100
35
.fseventsd
36
.Spotlight-V100
37
.TemporaryItems
38
.Trashes
39
.VolumeIcon.icns
40
.com.apple.timemachine.donotpresent
41

  
42
# Directories potentially created on remote AFP share
43
.AppleDB
44
.AppleDesktop
45
Network Trash Folder
46
Temporary Items
47
.apdisk
48

  
49
### PyCharm ###
50
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
51
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
52

  
53
# User-specific stuff
54
.idea/**/workspace.xml
55
.idea/**/tasks.xml
56
.idea/**/usage.statistics.xml
57
.idea/**/dictionaries
58
.idea/**/shelf
59

  
60
# AWS User-specific
61
.idea/**/aws.xml
62

  
63
# Generated files
64
.idea/**/contentModel.xml
65

  
66
# Sensitive or high-churn files
67
.idea/**/dataSources/
68
.idea/**/dataSources.ids
69
.idea/**/dataSources.local.xml
70
.idea/**/sqlDataSources.xml
71
.idea/**/dynamic.xml
72
.idea/**/uiDesigner.xml
73
.idea/**/dbnavigator.xml
74

  
75
# Gradle
76
.idea/**/gradle.xml
77
.idea/**/libraries
78

  
79
# Gradle and Maven with auto-import
80
# When using Gradle or Maven with auto-import, you should exclude module files,
81
# since they will be recreated, and may cause churn.  Uncomment if using
82
# auto-import.
83
# .idea/artifacts
84
# .idea/compiler.xml
85
# .idea/jarRepositories.xml
86
# .idea/modules.xml
87
# .idea/*.iml
88
# .idea/modules
89
# *.iml
90
# *.ipr
91

  
92
# CMake
93
cmake-build-*/
94

  
95
# Mongo Explorer plugin
96
.idea/**/mongoSettings.xml
97

  
98
# File-based project format
99
*.iws
100

  
101
# IntelliJ
102
out/
103

  
104
# mpeltonen/sbt-idea plugin
105
.idea_modules/
106

  
107
# JIRA plugin
108
atlassian-ide-plugin.xml
109

  
110
# Cursive Clojure plugin
111
.idea/replstate.xml
112

  
113
# SonarLint plugin
114
.idea/sonarlint/
115

  
116
# Crashlytics plugin (for Android Studio and IntelliJ)
117
com_crashlytics_export_strings.xml
118
crashlytics.properties
119
crashlytics-build.properties
120
fabric.properties
121

  
122
# Editor-based Rest Client
123
.idea/httpRequests
124

  
125
# Android studio 3.1+ serialized cache file
126
.idea/caches/build_file_checksums.ser
127

  
128
### PyCharm Patch ###
129
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
130

  
131
# *.iml
132
# modules.xml
133
# .idea/misc.xml
134
# *.ipr
135

  
136
# Sonarlint plugin
137
# https://plugins.jetbrains.com/plugin/7973-sonarlint
138
.idea/**/sonarlint/
139

  
140
# SonarQube Plugin
141
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
142
.idea/**/sonarIssues.xml
143

  
144
# Markdown Navigator plugin
145
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
146
.idea/**/markdown-navigator.xml
147
.idea/**/markdown-navigator-enh.xml
148
.idea/**/markdown-navigator/
149

  
150
# Cache file creation bug
151
# See https://youtrack.jetbrains.com/issue/JBR-2257
152
.idea/$CACHE_FILE$
153

  
154
# CodeStream plugin
155
# https://plugins.jetbrains.com/plugin/12206-codestream
156
.idea/codestream.xml
157

  
158
### Python ###
159
# Byte-compiled / optimized / DLL files
160
__pycache__/
161
*.py[cod]
162
*$py.class
163

  
164
# C extensions
165
*.so
166

  
167
# Distribution / packaging
168
.Python
169
build/
170
develop-eggs/
171
dist/
172
downloads/
173
eggs/
174
.eggs/
175
lib/
176
lib64/
177
parts/
178
sdist/
179
var/
180
wheels/
181
share/python-wheels/
182
*.egg-info/
183
.installed.cfg
184
*.egg
185
MANIFEST
186

  
187
# PyInstaller
188
#  Usually these files are written by a python script from a template
189
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
190
*.manifest
191
*.spec
192

  
193
# Installer logs
194
pip-log.txt
195
pip-delete-this-directory.txt
196

  
197
# Unit test / coverage reports
198
htmlcov/
199
.tox/
200
.nox/
201
.coverage
202
.coverage.*
203
.cache
204
nosetests.xml
205
coverage.xml
206
*.cover
207
*.py,cover
208
.hypothesis/
209
.pytest_cache/
210
cover/
211

  
212
# Translations
213
*.mo
214
*.pot
215

  
216
# Django stuff:
217
*.log
218
local_settings.py
219
db.sqlite3
220
db.sqlite3-journal
221

  
222
# Flask stuff:
223
instance/
224
.webassets-cache
225

  
226
# Scrapy stuff:
227
.scrapy
228

  
229
# Sphinx documentation
230
docs/_build/
231

  
232
# PyBuilder
233
.pybuilder/
234
target/
235

  
236
# Jupyter Notebook
237
.ipynb_checkpoints
238

  
239
# IPython
240
profile_default/
241
ipython_config.py
242

  
243
# pyenv
244
#   For a library or package, you might want to ignore these files since the code is
245
#   intended to run in multiple environments; otherwise, check them in:
246
# .python-version
247

  
248
# pipenv
249
#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
250
#   However, in case of collaboration, if having platform-specific dependencies or dependencies
251
#   having no cross-platform support, pipenv may install dependencies that don't work, or not
252
#   install all needed dependencies.
253
#Pipfile.lock
254

  
255
# poetry
256
#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
257
#   This is especially recommended for binary packages to ensure reproducibility, and is more
258
#   commonly ignored for libraries.
259
#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
260
#poetry.lock
261

  
262
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
263
__pypackages__/
264

  
265
# Celery stuff
266
celerybeat-schedule
267
celerybeat.pid
268

  
269
# SageMath parsed files
270
*.sage.py
271

  
272
# Environments
273
.env
274
.venv
275
env/
276
venv/
277
ENV/
278
env.bak/
279
venv.bak/
280

  
281
# Spyder project settings
282
.spyderproject
283
.spyproject
284

  
285
# Rope project settings
286
.ropeproject
287

  
288
# mkdocs documentation
289
/site
290

  
291
# mypy
292
.mypy_cache/
293
.dmypy.json
294
dmypy.json
295

  
296
# Pyre type checker
297
.pyre/
298

  
299
# pytype static type analyzer
300
.pytype/
301

  
302
# Cython debug symbols
303
cython_debug/
304

  
305
# PyCharm
306
#  JetBrains specific template is maintained in a separate JetBrains.gitignore that can
307
#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
308
#  and can be added to the global gitignore or merged into this file.  For a more nuclear
309
#  option (not recommended) you can uncomment the following to ignore the entire idea folder.
310
#.idea/
311

  
312
### venv ###
313
# Virtualenv
314
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
315
[Bb]in
316
[Ii]nclude
317
[Ll]ib
318
[Ll]ib64
319
[Ll]ocal
320
[Ss]cripts
321
pyvenv.cfg
322
pip-selfcheck.json
323

  
324
### VisualStudioCode ###
325
.vscode/*
326
!.vscode/settings.json
327
!.vscode/tasks.json
328
!.vscode/launch.json
329
!.vscode/extensions.json
330
!.vscode/*.code-snippets
331

  
332
# Local History for Visual Studio Code
333
.history/
334

  
335
# Built Visual Studio Code Extensions
336
*.vsix
337

  
338
### VisualStudioCode Patch ###
339
# Ignore all local history of files
340
.history
341
.ionide
342

  
343
# Support for Project snippet scope
344

  
345
### Windows ###
346
# Windows thumbnail cache files
347
Thumbs.db
348
Thumbs.db:encryptable
349
ehthumbs.db
350
ehthumbs_vista.db
351

  
352
# Dump file
353
*.stackdump
354

  
355
# Folder config file
356
[Dd]esktop.ini
357

  
358
# Recycle Bin used on file shares
359
$RECYCLE.BIN/
360

  
361
# Windows Installer files
362
*.cab
363
*.msi
364
*.msix
365
*.msm
366
*.msp
367

  
368
# Windows shortcuts
369
*.lnk
370

  
371
# End of https://www.toptal.com/developers/gitignore/api/python,visualstudiocode,pycharm,linux,windows,macos,venv

Také k dispozici: Unified diff