fatou 0.11.0

A language server, formatter, and linter for Julia
1
2
3
4
5
6
7
8
9
10
11
12
//! CLI bridge over the [`fatou_formatter`] engine.
//!
//! The formatting engine lives in the `fatou-formatter` crate; this module
//! re-exports it and hosts the CLI-side batch check API ([`check`]), which
//! owns the file walking, parallelism, and diffing that do not belong in the
//! published engine.

pub mod check;

pub use fatou_formatter::formatter::*;

pub use check::{ChangedFile, CheckError, CheckResult, check_paths};