Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit 3572c6e

Browse files
committed
try this out for now
1 parent f90fbaf commit 3572c6e

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,14 @@ lint:
5252
make lint.run
5353

5454
lint.install:
55+
echo "Installing..."
56+
pip install -Iv ruff
57+
58+
lint.local:
59+
make lint.install.local
60+
make lint.run
61+
62+
lint.install.local:
5563
echo "Installing..."
5664
uv add --dev ruff
5765

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ This repository uses `uv` to manage dependencies, so make sure you've installed
7474
### Formatting
7575

7676
This project uses `ruff` for formatting.
77-
You can run the linter using the command `make lint`.
77+
You can run the linter using the command `make lint_local`.
7878

7979
### Migrations
8080

ruff.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ ignore = ["F405", "F403", "E501", "E712", "C408"]
5353

5454
# Allow fix for all enabled rules (when `--fix`) is provided.
5555
# The preferred method (for now) w.r.t. fixable rules is to manually update the makefile
56-
# with --fix and re-run 'make lint'
56+
# with --fix and re-run 'make lint_local'
5757
fixable = ["ALL"]
5858
unfixable = []
5959

0 commit comments

Comments
 (0)