fallow_config/lib.rs
1#![cfg_attr(
2 test,
3 allow(
4 clippy::unwrap_used,
5 clippy::expect_used,
6 reason = "tests use unwrap and expect to keep fixture setup concise"
7 )
8)]
9
10mod config;
11mod config_writer;
12mod external_plugin;
13mod jsonc;
14pub mod levenshtein;
15mod workspace;
16
17pub use config::*;
18pub use config_writer::*;
19pub use external_plugin::*;
20pub use workspace::*;