From 774cc731d1e6328a8391b844bdf4b5048480a70c Mon Sep 17 00:00:00 2001 From: JosePizarro3 Date: Thu, 27 Jun 2024 14:00:33 +0200 Subject: [PATCH] Added back vscode/settings.json --- .gitignore | 1 - .vscode/settings.json | 17 +++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index 5274b0ab..f2074f92 100644 --- a/.gitignore +++ b/.gitignore @@ -164,7 +164,6 @@ cython_debug/ # VSCode settings .vscode/launch.json -.vscode/settings.json # comments scripts comments.py diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..04985fcd --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,17 @@ +{ + "editor.rulers": [ + 90 + ], + "editor.renderWhitespace": "all", + "editor.tabSize": 4, + "files.trimTrailingWhitespace": true, + "[python]": { + "editor.formatOnSave": true, + "editor.defaultFormatter": "charliermarsh.ruff" + }, + "python.testing.pytestArgs": [ + "tests" + ], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true +}