1/// The formatting mode for the CLI.
2///
3/// - `Check` — report files that need formatting without modifying them.
4/// - `Write` — format files in-place.
5pub enum FmtMode {
6/// Only check if formatting is needed; do not modify files.
7Check,
8/// Format files in-place.
9Write,
10}