#!/bin/bash

# For use with aider
#
# This script runs cargo clippy with the --fix option.
# Any arguments passed to this script are ignored.

cargo fmt && cargo clippy --fix --allow-dirty
