Project editing and testing configuration bumpf

This commit is contained in:
Jonathan Harker 2024-09-20 16:32:35 +12:00
parent 4011c1fa47
commit 2e4b981aa7
8 changed files with 139 additions and 0 deletions

17
pyproject.toml Normal file
View file

@ -0,0 +1,17 @@
[tool.isort]
line_length = 120
multi_line_output = 5
skip = []
known_first_party = []
[tool.flake8]
max_line_length = 120
exclude = [ ".git", ".pytest_cache", ".tox", ".venv", "__pycache__", "venv" ]
ignore = [ "E501" ]
[tool.autopep8]
max_line_length = 120
ignore = [ "E501" ]
in-place = true
recursive = true
aggressive = 3