Skip to content

Commit

Permalink
consistently use ruff
Browse files Browse the repository at this point in the history
Signed-off-by: Wesley M. Gifford <[email protected]>
  • Loading branch information
wgifford committed Apr 11, 2024
1 parent c36819d commit 55a53ff
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
{
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"isort.args": [
"--profile",
"black"
],
"python.testing.pytestArgs": [
"tests"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
"python.testing.pytestEnabled": true,
"ruff.format.args": [
"--config=./pyproject.toml"
],
"ruff.lint.args": [
"--config=./pyproject.toml"
]
}

0 comments on commit 55a53ff

Please sign in to comment.