mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-04 10:14:00 +08:00
12de1d175c
Co-authored-by: QuantumGhost <obelisk.reg+git@gmail.com>
16 lines
315 B
Bash
Executable File
16 lines
315 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
# run ruff linter
|
|
uv run --directory api --group lint ruff check --fix ./
|
|
|
|
# run ruff formatter
|
|
uv run --directory api --group lint ruff format ./
|
|
|
|
# run dotenv-linter linter
|
|
uv run --project api --group lint dotenv-linter ./api/.env.example ./web/.env.example
|
|
|
|
# run mypy check
|
|
dev/mypy-check
|