Configure code checking and formatting tools

Checking
- mypy
- flake8 (which uses pyflakes and pycodestyle)

Formatting
- autopep8
- isort
This commit is contained in:
Joscha
2021-05-16 14:31:43 +02:00
parent 8b76ebb3ef
commit 3efec53f51
5 changed files with 37 additions and 9 deletions

View File

@ -15,8 +15,8 @@ install_requires =
console_scripts =
pferd = PFERD.__main__:main
[pycodestyle]
max-line-length = 110
[flake8]
max_line_length = 110
[pylint.FORMAT]
max-line-length = 110
[isort]
line_length = 110