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
7 changes: 4 additions & 3 deletions .envrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@ echo_date() { echo "[$(date +'%Y-%m-%d %H:%M:%S')] $*" >&2; }
export UV_MANAGED_PYTHON='true'
export UV_PRERELEASE='disallow'
export UV_PYTHON='3.14'
export UV_VENV_CLEAR=1
if ! command -v uv >/dev/null 2>&1; then
echo_date "ERROR: 'uv' not found" && exit 1
echo_date "ERROR: 'uv' not found" && exit 1
fi
activate='.venv/bin/activate'
if [ -f $activate ]; then
. $activate
. $activate
else
uv venv
uv venv
fi
uv sync --all-extras --all-groups --active --locked
13 changes: 11 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/dycw/actions
rev: 0.10.3
rev: 0.10.10
hooks:
- id: conformalize-repo
args:
Expand All @@ -19,6 +19,7 @@ repos:
- --pre-commit--prettier
- --pre-commit--python
- --pre-commit--ruff
- --pre-commit--shell
- --pre-commit--taplo
- --pre-commit--uv
- --pyproject
Expand Down Expand Up @@ -65,6 +66,14 @@ repos:
args:
- --fix
- id: ruff-format
- repo: https://github.com/scop/pre-commit-shfmt
rev: v3.12.0-2
hooks:
- id: shfmt
- repo: https://github.com/koalaman/shellcheck-precommit
rev: v0.11.0
hooks:
- id: shellcheck
- repo: https://github.com/compwa/taplo-pre-commit
rev: v0.9.3
hooks:
Expand All @@ -77,7 +86,7 @@ repos:
- --option
- reorder_keys=true
- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.9.22
rev: 0.9.24
hooks:
- id: uv-lock
args:
Expand Down
58 changes: 30 additions & 28 deletions uv.lock

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

Loading