Skip to content

Commit ccdcbb1

Browse files
committed
add end-of-file-fixer
1 parent 276e577 commit ccdcbb1

3 files changed

Lines changed: 70 additions & 48 deletions

File tree

Justfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ build:
2020

2121
install:
2222
uv lock --upgrade
23-
uv sync --all-extras --no-install-project --frozen
23+
uv sync --all-extras --all-groups --no-install-project --frozen
2424

2525
lint:
26+
uv run end-of-file-fixer .
2627
uv run ruff format .
2728
uv run ruff check . --fix
2829
uv run mypy .

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,11 @@ dev = [
3333
"pytest-cov",
3434
"pytest-asyncio",
3535
"asgi_lifespan",
36+
]
37+
lint = [
3638
"ruff",
3739
"mypy",
40+
"end-of-file-fixer",
3841
"asyncpg-stubs",
3942
]
4043

0 commit comments

Comments
 (0)