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 +0,0 @@
[MESSAGES CONTROL]
disable=missing-module-docstring,
missing-function-docstring

View file

@ -1,3 +1,17 @@
[tool.pylint.messages_control]
extension-pkg-whitelist = "pydantic"
disable = [
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
]
[tool.mypy]
allow_redefinition = true
disallow_incomplete_defs= true
disallow_untyped_calls= true
disallow_untyped_defs= true
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"