We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 276e577 commit ccdcbb1Copy full SHA for ccdcbb1
3 files changed
Justfile
@@ -20,9 +20,10 @@ build:
20
21
install:
22
uv lock --upgrade
23
- uv sync --all-extras --no-install-project --frozen
+ uv sync --all-extras --all-groups --no-install-project --frozen
24
25
lint:
26
+ uv run end-of-file-fixer .
27
uv run ruff format .
28
uv run ruff check . --fix
29
uv run mypy .
pyproject.toml
@@ -33,8 +33,11 @@ dev = [
33
"pytest-cov",
34
"pytest-asyncio",
35
"asgi_lifespan",
36
+]
37
+lint = [
38
"ruff",
39
"mypy",
40
+ "end-of-file-fixer",
41
"asyncpg-stubs",
42
]
43
0 commit comments