mirror of
https://github.com/cyberjunky/home-assistant-garmin_connect.git
synced 2026-01-09 12:57:58 -05:00
14 lines
341 B
Bash
14 lines
341 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
python3 -m pip install --requirement requirements_lint.txt
|
|
|
|
ruff check . --fix;
|
|
pre-commit install-hooks --config .github/pre-commit-config.yaml;
|
|
pre-commit run --hook-stage manual --all-files --config .github/pre-commit-config.yaml;
|
|
|
|
vulture . --min-confidence 55 --ignore-names policy
|