mirror of
https://github.com/hacs/integration.git
synced 2025-08-20 16:14:55 +00:00
11 lines
261 B
Bash
Executable File
11 lines
261 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
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 75 --ignore-names policy
|