mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-17 15:13:24 +02:00
32 lines
591 B
TOML
32 lines
591 B
TOML
[format]
|
|
line-ending = "lf"
|
|
quote-style = "double"
|
|
|
|
[lint]
|
|
# to be enabled: A, ANN, ARG, BLE, C90, CPY, D, DOC, DTZ, FBT, G, INP, INT, N, PERF, PIE, PL, PTH, RET, RSE, SLF, SIM, TC, TRY, UP
|
|
extend-select = [
|
|
"ASYNC",
|
|
"B",
|
|
"C4", "COM",
|
|
"E", "EXE",
|
|
"F", "FA", "FIX", "FLY", "FURB",
|
|
"ICN",
|
|
"LOG",
|
|
"PGH", "PT", "PYI",
|
|
"Q",
|
|
"SLOT",
|
|
"T10", "TD", "TID",
|
|
"W",
|
|
"YTT"
|
|
]
|
|
|
|
ignore = [
|
|
# incompatible with formatter
|
|
"COM812",
|
|
# lines too long
|
|
"E501",
|
|
]
|
|
|
|
[lint.flake8-bugbear]
|
|
extend-immutable-calls = ["fastapi.Depends", "fastapi.Path"]
|