ruff: enable INT and N lint

this renames some files to use snake_case and add Error suffix to custom
exceptions
This commit is contained in:
Marcel Hellwig
2026-01-05 12:48:39 +01:00
parent 29a0d8fe5d
commit 29476e2008
21 changed files with 40 additions and 33 deletions

View File

@@ -5,7 +5,7 @@ line-ending = "lf"
quote-style = "double"
[lint]
# to be enabled: ANN, BLE, C90, CPY, D, DOC, DTZ, FBT, G, INT, N, PERF, PIE, PL, PTH, RET, RSE, SLF, SIM, TC, TRY, UP
# to be enabled: ANN, BLE, C90, CPY, D, DOC, DTZ, FBT, G, PERF, PIE, PL, PTH, RET, RSE, SLF, SIM, TC, TRY, UP
extend-select = [
"A", "ARG", "ASYNC",
"B",
@@ -13,8 +13,9 @@ extend-select = [
"DTZ",
"E", "EM", "EXE",
"F", "FA", "FAST", "FIX", "FLY", "FURB",
"I", "ICN", "INP", "ISC",
"I", "ICN", "INP", "INT", "ISC",
"LOG",
"N",
"PGH", "PT", "PYI",
"Q",
"RUF",