Skip to content

Commit

Permalink
refactor(linter): rename flat.rs to config.rs (#8033)
Browse files Browse the repository at this point in the history
simply renames `flat.rs` to `config.rs` to more accurately reflect the file's purpose
  • Loading branch information
camc314 committed Dec 21, 2024
1 parent 50848ed commit 952d7e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions crates/oxc_linter/src/config/mod.rs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down

0 comments on commit 952d7e4

Please sign in to comment.