mirror of
https://github.com/jpawlowski/hass.tibber_prices.git
synced 2026-03-29 21:03:40 +00:00
14 lines
212 B
Bash
Executable file
14 lines
212 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# script/check: Run linting and type checking tools together
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
if [ -z "$VIRTUAL_ENV" ]; then
|
|
. "$HOME/.venv/bin/activate"
|
|
fi
|
|
|
|
scripts/type-check
|
|
scripts/lint-check
|