Skip to content

Commit 9dd76b2

Browse files
committed
Fix
1 parent d5aae6b commit 9dd76b2

File tree

6 files changed

+67
-70
lines changed

6 files changed

+67
-70
lines changed

.gitignore

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
*
22

33
!.github/
4-
!.github/**
4+
!.github/**/
55
!assets/
6-
!assets/**
6+
!assets/**/
77
!.editorconfig
88
!.envrc
99
!.gitattributes
@@ -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

ruff.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ extend-select = [
1717
# Ruff-specific rules
1818
"RUF",
1919
]
20+
2021
ignore = [
2122
"E402", # Module level import not at top of file
2223
"E501", # Line too long
@@ -36,7 +37,6 @@ select = ["E", "F", "I"]
3637
[lint.isort]
3738
known-first-party = ["modern_python", "core"]
3839

39-
4040
[lint.pydocstyle]
4141
convention = "google"
4242

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)