mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 04:08:41 +00:00
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:
parent
50848ede52
commit
952d7e46bf
2 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue