chore: make linters config consistent in pyproject.toml
- remove mypy config from makefile
This commit is contained in:
parent
7988b7467b
commit
9de82bb568
11 changed files with 69 additions and 16 deletions
|
@ -1,3 +0,0 @@
|
|||
[MESSAGES CONTROL]
|
||||
disable=missing-module-docstring,
|
||||
missing-function-docstring
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue