refactor(linter): rename flat.rs to config.rs (#8033)

simply renames `flat.rs` to `config.rs` to more accurately reflect the file's purpose
This commit is contained in:
camc314 2024-12-21 02:01:40 +00:00
parent 50848ede52
commit 952d7e46bf
2 changed files with 3 additions and 3 deletions

View file

@ -1,17 +1,17 @@
use std::path::PathBuf;
mod categories;
mod config_store;
mod env;
mod flat;
mod globals;
mod overrides;
mod oxlintrc;
mod plugins;
mod rules;
mod settings;
pub use config_store::ConfigStore;
pub(crate) use config_store::ResolvedLinterState;
pub use env::OxlintEnv;
pub use flat::ConfigStore;
pub(crate) use flat::ResolvedLinterState;
pub use globals::OxlintGlobals;
pub use overrides::OxlintOverrides;
pub use oxlintrc::Oxlintrc;