diff options
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/settings.json | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json index bd8762b..0054bca 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,10 +3,12 @@ "editor.formatOnType": true, "editor.defaultFormatter": "ms-python.black-formatter", "editor.formatOnSave": true, - "editor.rulers": [80, 120], + "editor.rulers": [88, 120], }, "black-formatter.importStrategy": "fromEnvironment", "python.analysis.typeCheckingMode": "basic", - "python.linting.pylintEnabled": true, - "python.linting.enabled": true, + "ruff.organizeImports": true, + "ruff.importStrategy": "fromEnvironment", + "ruff.fixAll": true, + "ruff.run": "onType" }
\ No newline at end of file |