-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
39 lines (30 loc) · 953 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# In-repository virtual python environment with poetry
/.venv/
# Tool folder
/.tools/
# Local (scope is this repository some kind of "virtual" extensions and user settings)
# Appear when you (cwd is VS Code project's root) start VS Code as
#
# code --extensions-dir .extensions/ --user-data-dir .user/ --profile profile-${PWD##*/}-$(whoami) .
#
# Advantage: Do not touch your system's VS Code environment. Same as with pipenv
/.extensions/
/.user/
# We don't nail down the versions. Let's always get the hottest stuff.
# We are here at playground phase of a toy project, so no serious release is coming up.
# Being-up-to-date beats stability and reproducibility here.
poetry.lock
# Documentation build folder
/out/
# Automatically generated files by Sphinx extension create-tags
_tags/
## Temporary esbonio files
esbonio.*
# Temporary files
~$*
.$*
# Any pycache-files which might appear
__pycache__/
*.pyc
# USB-Stick mit Software
/usb-stick/