chore(build): bump poetry from 1.x to 2.x (#12369)

This commit is contained in:
Bowen Liang 2025-01-22 13:38:24 +08:00 committed by GitHub
commit c62b7cc679
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 889 additions and 26 deletions

View file

@ -9,10 +9,10 @@ if ! command -v ruff &> /dev/null || ! command -v dotenv-linter &> /dev/null; th
fi
# run ruff linter
poetry run -C api ruff check --fix ./api
poetry run -C api ruff check --fix ./
# run ruff formatter
poetry run -C api ruff format ./api
poetry run -C api ruff format ./
# run dotenv-linter linter
poetry run -C api dotenv-linter ./api/.env.example ./web/.env.example
poetry run -P api dotenv-linter ./api/.env.example ./web/.env.example