chore: update ruff rules

pull/577/head
Dowon 2024-04-09 21:03:56 +09:00
parent 8c2980271d
commit a29d6afe26
1 changed files with 5 additions and 1 deletions

View File

@ -54,6 +54,7 @@ select = [
"I001",
"ISC",
"N",
"PD",
"PERF",
"PIE",
"PT",
@ -61,10 +62,13 @@ select = [
"RET",
"RUF",
"SIM",
"T20",
"TRY",
"UP",
"W",
]
ignore = ["B008", "B905", "E501", "F401"]
ignore = ["B905", "E501"]
unfixable = ["F401"]
[tool.ruff.lint.isort]
known-first-party = ["launch", "modules"]