Dorothydu's picture
Upload 50 random repository samples
9d3c8f5 verified
raw
history blame
400 Bytes
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120
select = [
"A",
"ARG",
"B",
"C4",
"E",
"F",
"I",
"N",
"PGH",
"RUF",
"S",
"SIM",
"T10",
"T20",
"UP",
"W",
"YTT",
]
exclude = [
"tests" # exclude for now
]
ignore = ["ARG002", "E501", "RUF012"]
per-file-ignores = { "tests/**/*" = ["S101"] }
target-version = "py37"