Skip to content

Commit 06f841d

Browse files
committed
use toml
1 parent 886fc3d commit 06f841d

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

mypy.ini

Lines changed: 0 additions & 8 deletions
This file was deleted.

pyproject.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,14 @@ line_length = 100
2121
enabled = true
2222
live_mode = true
2323
strict = true
24+
25+
[tool.mypy]
26+
python_version = "3.6"
27+
28+
[[tool.mypy.overrides]]
29+
module = "pylsp.*"
30+
ignore_missing_imports = true
31+
32+
[[tool.mypy.overrides]]
33+
module = "pylsp_mypy.plugin"
34+
disallow_untyped_decorators = false

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
python-lsp-server
22
mypy
33
toml
4+
types-toml
45
black
56
pre-commit
67
rstcheck

0 commit comments

Comments
 (0)