ruff: add INP lint

this checks for missing __init__.py files, there was one :)
This commit is contained in:
Marcel Hellwig
2026-01-05 12:04:58 +01:00
parent 55b2dd63d8
commit 29a0d8fe5d
2 changed files with 5 additions and 2 deletions

View File

View File

@@ -1,16 +1,19 @@
namespace-packages = ["alembic", "metadata_relay"]
[format]
line-ending = "lf"
quote-style = "double"
[lint]
# to be enabled: ANN, BLE, C90, CPY, D, DOC, DTZ, FBT, G, INP, 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, INT, N, PERF, PIE, PL, PTH, RET, RSE, SLF, SIM, TC, TRY, UP
extend-select = [
"A", "ARG", "ASYNC",
"B",
"C4", "COM",
"DTZ",
"E", "EM", "EXE",
"F", "FA", "FAST", "FIX", "FLY", "FURB",
"I", "ICN", "ISC",
"I", "ICN", "INP", "ISC",
"LOG",
"PGH", "PT", "PYI",
"Q",