mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-01-23 12:37:05 +00:00
Added Ruff config for Python code.
This commit is contained in:
parent
4f2d69d932
commit
e93009704e
69
pyproject.toml
Normal file
69
pyproject.toml
Normal file
@ -0,0 +1,69 @@
|
||||
[tool.ruff]
|
||||
line-length = 320 # https://github.com/astral-sh/ruff/issues/8106
|
||||
indent-width = 4
|
||||
|
||||
target-version = "py310"
|
||||
|
||||
preview = true
|
||||
|
||||
output-format = "concise"
|
||||
|
||||
extend-exclude = ["tools/mail.py"]
|
||||
|
||||
[tool.ruff.lint]
|
||||
select = [
|
||||
"F",
|
||||
"E4",
|
||||
"E7",
|
||||
"E9",
|
||||
"W",
|
||||
"UP",
|
||||
"YTT",
|
||||
"S",
|
||||
"BLE",
|
||||
"B",
|
||||
"A",
|
||||
"C4",
|
||||
"T10",
|
||||
"DJ",
|
||||
"EM",
|
||||
"EXE",
|
||||
"ISC",
|
||||
"ICN",
|
||||
"G",
|
||||
"PIE",
|
||||
"PYI",
|
||||
"Q003",
|
||||
"Q004",
|
||||
"RSE",
|
||||
"RET",
|
||||
"SLF",
|
||||
"SLOT",
|
||||
"SIM",
|
||||
"TID",
|
||||
"TC",
|
||||
"ARG",
|
||||
"PGH",
|
||||
"PL",
|
||||
"TRY",
|
||||
"FLY",
|
||||
"PERF",
|
||||
"FURB",
|
||||
"LOG",
|
||||
"RUF"
|
||||
]
|
||||
ignore = [
|
||||
"W191",
|
||||
"PLR09",
|
||||
"PLR1702",
|
||||
"PLR2004",
|
||||
"RUF001",
|
||||
"RUF002",
|
||||
"RUF003",
|
||||
"RUF023"
|
||||
]
|
||||
|
||||
[tool.ruff.format]
|
||||
quote-style = "preserve"
|
||||
|
||||
indent-style = "tab"
|
Loading…
Reference in New Issue
Block a user