Datasets:
| # 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"] | |