Skip to content

Commit ba8dc2d

Browse files
committed
Fix
1 parent d5aae6b commit ba8dc2d

File tree

5 files changed

+64
-67
lines changed

5 files changed

+64
-67
lines changed

.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
!README.md
1818

1919
!scripts/
20-
!scripts/**
20+
!scripts/**/
2121
!shared/
22-
!shared/**
22+
!shared/**/
2323
!src/
24-
!src/**
24+
!src/**/
2525
!tests/
26-
!tests/**
26+
!tests/**/
2727

2828
!*.md
2929
!*.mdc

.justfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ check:
5353
@echo "Checking..."
5454
@uv lock --locked
5555
@uv run pre-commit run -a
56-
@uv run mypy .
57-
@uv run deptry . --ignore=DEP002,DEP003
5856

5957
# Remove build artifacts and non-essential files
6058
clean:

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ repos:
5151
]
5252

5353
- repo: https://github.com/asottile/pyupgrade
54-
rev: "v3.21.0"
54+
rev: "v3.21.2"
5555
hooks:
5656
- id: pyupgrade
5757
args: ["--py310-plus", "--keep-runtime-typing"]
5858

5959
- repo: https://github.com/astral-sh/ruff-pre-commit
60-
rev: "v0.14.1"
60+
rev: "v0.14.6"
6161
hooks:
6262
# Formatter first so code is canonicalized
6363
- id: ruff-format

shell.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ pkgs.mkShell {
1212

1313
# Shell hook to set up environment
1414
shellHook = ''
15+
export TMPDIR=/tmp
1516
just install
1617
'';
1718
}

0 commit comments

Comments
 (0)