diff --git a/pyproject.toml b/pyproject.toml index 0de1efd..0088f2c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"