#!/usr/bin/env bash
#MISE description="Check Rust code formatting with cargo fmt"
set -euo pipefail

cargo fmt --all -- --check
