File: pyproject.toml

package info (click to toggle)
python-lsp-mypy 0.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 144 kB
  • sloc: python: 763; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 468 bytes parent folder | download
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