We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d157068 commit 68c87ddCopy full SHA for 68c87dd
pyproject.toml
@@ -20,6 +20,7 @@ license = {text = "MIT"}
20
[tool.pdm.scripts]
21
start = "uvicorn src.paste.main:app --host 0.0.0.0 --port 8080 --workers 4"
22
test = "pytest"
23
+mypy = "mypy src/paste"
24
25
[tool.pdm.dev-dependencies]
26
test = [
@@ -33,3 +34,7 @@ lint = [
33
34
hooks = [
35
"pre-commit>=3.6.0",
36
]
37
+
38
+[tool.ruff]
39
+line-length = 160
40
+exclude = ["data/*", ".git"]
0 commit comments