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
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ bootstrap:
uv sync --dev

.PHONY: check
check: black lint ty
check: format lint ty

.PHONY: black
black:
uv run black --check $(CODEDIRS)
.PHONY: format
format:
uv run ruff format --check $(CODEDIRS)

.PHONY: lint
lint:
Expand All @@ -23,7 +23,7 @@ ty:

.PHONY: fix
fix:
uv run black $(CODEDIRS)
uv run ruff format $(CODEDIRS)
uv run ruff check --fix $(CODEDIRS)

.PHONY: test
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ However, hopefully you'll appreciate some of the ideas within!
* Dependabot updates for Python dependencies and GitHub Actions
* Dependabot auto-merge for minor and patch-level updates
* Makefile with convenience commands
* [Black](https://black.readthedocs.io/en/stable/) for code formatting
* [structlog](https://www.structlog.org/en/stable/) for structured logging
* [pytest](https://docs.pytest.org/en/stable/) for testing
* [Coverage.py](https://coverage.readthedocs.io/en/latest/) for measuring code coverage
* [ty](https://docs.astral.sh/ty/) for type checking
* [Ruff](https://docs.astral.sh/ruff/) for [linting ALL the things](https://docs.astral.sh/ruff/rules/)
* [Ruff](https://docs.astral.sh/ruff/) for code formatting and [linting ALL the things](https://docs.astral.sh/ruff/rules/)
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ select = [

[dependency-groups]
dev = [
"black",
"coverage",
"pytest",
"ruff",
Expand Down
75 changes: 0 additions & 75 deletions uv.lock

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

Loading