From 45fafe65897f5196bf2042afde5bf3357fe1542b Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 22 Sep 2022 11:33:53 +0200 Subject: [PATCH] Move mypy config into pyproject.toml --- pyproject.toml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) 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"