mirror of
https://github.com/jpawlowski/hass.tibber_prices.git
synced 2026-03-29 21:03:40 +00:00
15 lines
264 B
Bash
Executable file
15 lines
264 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# script/lint-check: Check linting without making changes.
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
echo "==> Checking code format..."
|
|
uv run ruff format . --check
|
|
|
|
echo "==> Checking code with Ruff..."
|
|
uv run ruff check .
|
|
|
|
echo "==> Linting check completed!"
|