mirror of
https://github.com/Hopiu/djLint.git
synced 2026-03-16 21:40:24 +00:00
Move mypy config into pyproject.toml
This commit is contained in:
parent
38e69488bf
commit
45fafe6589
1 changed files with 7 additions and 4 deletions
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue