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 +}