-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpyproject.toml
57 lines (51 loc) · 999 Bytes
/
pyproject.toml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ruff-vscode"
version = "2023.35.0-dev"
description = "A Visual Studio Code extension with support for the Ruff linter."
authors = [
{ name = "Charlie Marsh", email = "[email protected]" },
]
maintainers = [
{ name = "Charlie Marsh", email = "[email protected]" },
]
requires-python = ">=3.7"
license = "MIT"
dependencies = [
"ruff-lsp==0.0.38",
"ruff==0.0.287",
]
[project.optional-dependencies]
dev = [
"mypy==1.2.0",
"python-lsp-jsonrpc==1.0.0",
]
[tool.ruff]
line-length = 88
select = [
"E",
"F",
"W",
"Q",
"UP",
"I",
"N",
]
target-version = "py37"
extend-exclude = ["bundled/libs"]
[tool.black]
line-length = 88
[tool.mypy]
files = ["bundled/tool", "build", "tests"]
no_implicit_optional = true
check_untyped_defs = true
[[tool.mypy.overrides]]
module = [
"debugpy.*",
"lsprotocol.*",
"pygls.*",
"pylsp_jsonrpc.*",
]
ignore_missing_imports = true