Commit 5e040de9 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Move python tools config to pyproject.toml

As flakeheaven requires pyproject.toml, the rest of the
linters/formatters config might as well go in it.
parent 15e593d8
Loading
Loading
Loading
Loading

.lint.cfg

deleted100644 → 0
+0 −8
Original line number Diff line number Diff line
[isort]
force_single_line = true

[mypy]
strict = true
warn_unused_configs = true
warn_unreachable = true
mypy_path = tests
+12 −0
Original line number Diff line number Diff line
[tool.isort]
force_single_line = true
known_first_party = "kilter.protocol"


[tool.flakeheaven]
base = "https://code.kodo.org.uk/dom/project-templates/-/raw/main/.flakerules.toml"
max_line_length = 92
@@ -14,3 +19,10 @@ flake8-docstrings = ["-*"]

[tool.flakeheaven.exceptions."doc/*"]
flake8-docstrings = ["-*"]


[tool.mypy]
strict = true
warn_unused_configs = true
warn_unreachable = true
mypy_path = "tests"