Skip to content

Commit 2fdf3b9

Browse files
d-biehlfebb0e
andcommitted
created gitignore and remove unneeded vscode setting
Co-authored-by: Fabian Tsirogiannis <febb0e@users.noreply.github.com>
1 parent 1af5777 commit 2fdf3b9

File tree

2 files changed

+95
-9
lines changed

2 files changed

+95
-9
lines changed

demo/.gitignore

Lines changed: 95 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,96 @@
1-
.mypy_cache
2-
.ruff_cache
1+
# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,pythonvanilla,robotframework
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,pythonvanilla,robotframework
33

4-
reports/
5-
results/
4+
### PythonVanilla ###
5+
# Byte-compiled / optimized / DLL files
6+
__pycache__/
7+
*.py[cod]
8+
*$py.class
9+
10+
# C extensions
11+
*.so‚
12+
13+
# Distribution / packaging
14+
.Python
15+
build/
16+
develop-eggs/
17+
dist/
18+
downloads/
19+
eggs/
20+
.eggs/
21+
lib/
22+
lib64/
23+
parts/
24+
sdist/
25+
var/
26+
wheels/
27+
share/python-wheels/
28+
*.egg-info/
29+
.installed.cfg
30+
*.egg
31+
MANIFEST
32+
33+
# Installer logs
34+
pip-log.txt
35+
pip-delete-this-directory.txt
36+
37+
# Unit test / coverage reports
38+
htmlcov/
39+
.tox/
40+
.nox/
41+
.coverage
42+
.coverage.*
43+
.cache
44+
nosetests.xml
45+
coverage.xml
46+
*.cover
47+
*.py,cover
48+
.hypothesis/
49+
.pytest_cache/
50+
cover/
51+
52+
# Translations
53+
*.mo
54+
*.pot
55+
56+
# pyenv
57+
# For a library or package, you might want to ignore these files since the code is
58+
# intended to run in multiple environments; otherwise, check them in:
59+
# .python-version
60+
61+
# pipenv
62+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
63+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
64+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
65+
# install all needed dependencies.
66+
#Pipfile.lock
67+
68+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
69+
__pypackages__/
70+
71+
72+
### robotframework ###
73+
log.html
74+
output.xml
75+
report.html
76+
selenium-screenshot-*.png
77+
78+
### VisualStudioCode ###
79+
.vscode/*
80+
!.vscode/tasks.json
81+
!.vscode/launch.json
82+
!.vscode/extensions.json
83+
!.vscode/*.code-snippets
84+
85+
# Local History for Visual Studio Code
86+
.history/
87+
88+
# Built Visual Studio Code Extensions
89+
*.vsix
90+
91+
### VisualStudioCode Patch ###
92+
# Ignore all local history of files
93+
.history
94+
.ionide
95+
96+
# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,pythonvanilla,robotframework

demo/.vscode/settings.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)