Move mypy config into pyproject.toml

This commit is contained in:
Christian Clauss 2022-09-22 11:33:53 +02:00 committed by GitHub
parent 38e69488bf
commit 45fafe6589
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,10 +25,6 @@ packages = [
]
include = ["rules.yaml"]
[tool.black]
max_line_length = 99
quiet = true
[tool.poetry.dependencies]
python = "^3.7.2,<4.0"
click = "^8.0.1"
@ -60,10 +56,17 @@ tox = "^3.25.1"
[tool.poetry.scripts]
djlint = "djlint:main"
[tool.black]
max_line_length = 99
quiet = true
[tool.isort]
profile = "black"
quiet = true
[tool.mypy]
ignore_missing_imports = true
[tool.pylint.messages_control]
disable = "E1120, R0914, E0401, R0912, R0916, R0913, W0104, R0801, W1404, R0902, R0903, R1732, R0915, C0301, R1702"