Files
barker/lint.sh
Amritanshu 38a8656008 Added proper agents config for mcp servers and skills.
Added the menu category delete route.
Fix: Show blank vouchers in tables
Fix: In rare cases, the old settements can stick around. fixed it.
2026-08-10 08:25:12 +00:00

17 lines
378 B
Bash
Executable File

#!/usr/bin/env bash
set -eEu -o pipefail
shopt -s extdebug
IFS=$'\n\t'
parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" || exit ; pwd -P )
cd "$parent_path/bookie" || exit
npx prettier --write src/app
npx ng lint --fix
cd "$parent_path/barker" || exit
uv run ruff format .
uv run ruff check .
uv run bandit --recursive barker
uv run bandit --recursive .
uv run safety check