better .gitignore

This commit is contained in:
Oussama Jarrousse
2023-12-26 17:43:57 +01:00
parent 0075f84b29
commit c53b4d1e1a
2 changed files with 8 additions and 20 deletions

9
.gitignore vendored
View File

@@ -1,5 +1,9 @@
.idea
example/venv example/venv
# IDE
.idea
.vscode
# Byte-compiled / optimized / DLL files # Byte-compiled / optimized / DLL files
__pycache__/ __pycache__/
*.py[cod] *.py[cod]
@@ -105,3 +109,6 @@ venv.bak/
# mypy # mypy
.mypy_cache/ .mypy_cache/
example/test_db example/test_db
# OS related
.DS_Store

19
.vscode/launch.json vendored
View File

@@ -1,19 +0,0 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"stopOnEntry": false,
"justMyCode": false,
"env": {"PYTEST_ADDOPTS": "--no-cov"},
"purpose": ["debug-test"]
}
]
}