You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112
  1. #!/bin/bash
  2. set -x
  3. # python style checks rely on `ruff` in path
  4. if ! command -v ruff &> /dev/null; then
  5. echo "Installing Ruff ..."
  6. pip install ruff
  7. fi
  8. # run ruff linter
  9. ruff check --fix ./api