Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ install:
uv sync --all-extras --frozen --group lint

lint:
uv run end-of-file-fixer .
uv run ruff format
uv run ruff check --fix
uv run mypy .

lint-ci:
uv run end-of-file-fixer . --check
uv run ruff format --check
uv run ruff check --no-fix
uv run mypy .
Expand Down
2 changes: 1 addition & 1 deletion lite_bootstrap/static/fastapi_docs/redoc.standalone.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lite_bootstrap/static/fastapi_docs/swagger-ui-bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lite_bootstrap/static/fastapi_docs/swagger-ui.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lite_bootstrap/static/litestar_docs/default.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lite_bootstrap/static/litestar_docs/swagger-ui.css

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ fastapi-all = [
]
litestar = [
"litestar>=2.9",
"sniffio", # remove after release of https://github.com/litestar-org/litestar/issues/4505
]
litestar-sentry = [
"lite-bootstrap[litestar,sentry]",
Expand Down Expand Up @@ -121,6 +122,7 @@ dev = [
lint = [
"mypy",
"ruff",
"end-of-file-fixer",
]

[build-system]
Expand Down
Loading