Use ruff check --fix instead of isort.

This commit is contained in:
Felix Fontein
2025-12-25 21:59:18 +01:00
parent 9cbf9fc6ec
commit 81c3ae5d84
4 changed files with 14 additions and 9 deletions

View File

@@ -13,9 +13,14 @@ stable_branches = [ "stable-*" ]
[sessions]
[sessions.lint]
run_isort = true
isort_config = ".isort.cfg"
run_isort = false
run_black = true
run_ruff_autofix = true
ruff_autofix_config = "ruff.toml"
ruff_autofix_select = [
"I",
"RUF022",
]
run_ruff_check = true
ruff_check_config = "ruff.toml"
run_flake8 = true