#!/bin/bash
# https://pycodestyle.pycqa.org/en/latest/intro.html#error-codes
set -ex

ruff check . || (exit 0)
ruff check --fix .
ruff check .
