1 parent e366464 commit 3300a98Copy full SHA for 3300a98
1 file changed
pyproject.toml
@@ -22,9 +22,12 @@ dependencies = [
22
23
24
[project.optional-dependencies]
25
-dev = ["ruff"]
+dev = ["ruff", "mypy"]
26
test = ["pytest", "pytest-cov"]
27
28
+[tool.ruff]
29
+line-length = 88
30
+
31
[tool.ruff.lint]
32
preview = true # needed for "DOC" rules
33
exclude = ["venv", "__pycache__", "__init__.py"]
@@ -38,6 +41,9 @@ convention = "google"
38
41
[tool.pytest.ini_options]
39
42
testpaths = ["tests"]
40
43
44
+[tool.pylance]
45
+typeCheckingMode = "basic"
46
47
[tool.coverage.run]
48
branch = true
49
source = ["corgos_telegram_bot"]
0 commit comments