diff --git a/.vscode/settings.json b/.vscode/settings.json index dc1da07..379bd1f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,14 @@ { + "[python]": { + "editor.defaultFormatter": "charliermarsh.ruff", + "editor.formatOnSave": true, + + // Let Ruff handle lint fixes + import sorting on save + "editor.codeActionsOnSave": { + "source.fixAll.ruff": "explicit", + "source.organizeImports.ruff": "explicit" + } + }, "markdownlint.config": { "MD024": false }, diff --git a/build.sh b/build.sh index 02f1bdb..75cd238 100755 --- a/build.sh +++ b/build.sh @@ -8,7 +8,6 @@ fi . venv/bin/activate pip install .[build] -ruff format . ruff check . cd docs make clean