From c53b4d1e1a2219375e813bbb9472df0739f64df8 Mon Sep 17 00:00:00 2001 From: Oussama Jarrousse Date: Tue, 26 Dec 2023 17:43:57 +0100 Subject: [PATCH] better .gitignore --- .gitignore | 9 ++++++++- .vscode/launch.json | 19 ------------------- 2 files changed, 8 insertions(+), 20 deletions(-) delete mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index f3d5cc3..c22f190 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,9 @@ -.idea example/venv + +# IDE +.idea +.vscode + # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] @@ -105,3 +109,6 @@ venv.bak/ # mypy .mypy_cache/ example/test_db + +# OS related +.DS_Store diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 650039b..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -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"] - } - ] -} \ No newline at end of file