Datasets:
File size: 385 Bytes
326c447 | 1 2 3 4 5 6 7 8 9 10 11 | # Lint rules are declared explicitly, not inherited from whatever ruff
# version CI happens to install. Ruff's defaults have widened over releases,
# and a public repo should not go red because a linter shipped a new rule.
#
# E4/E7/E9 + F is ruff's long-standing default; I adds import sorting.
target-version = "py310"
line-length = 100
[lint]
select = ["E4", "E7", "E9", "F", "I"]
|