1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
[tool.black]
line-length = 100
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| \.venv
| _build
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 100
[tool.pylsp-mypy]
enabled = true
live_mode = true
strict = true
[tool.mypy]
python_version = "3.9"
[[tool.mypy.overrides]]
module = "pylsp.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "pylsp_mypy.plugin"
disallow_untyped_decorators = false
|