#!/bin/bash

set -e

# run linting of python files
echo 'Running linting (ruff)...'

uv run ruff check config.py index.py refresh_neo4j.py
uv run ruff format --check .
uv run typos check .

echo 'Done!'
