chore: make linters config consistent in pyproject.toml

- remove mypy config from makefile
This commit is contained in:
jo 2022-01-22 16:59:15 +01:00 committed by Kyle Robbertze
parent 7988b7467b
commit 9de82bb568
11 changed files with 69 additions and 16 deletions

View file

@ -1,3 +1,11 @@
[tool.pylint.messages_control]
extension-pkg-whitelist = "pydantic"
disable = [
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"