Skip to content

Commit

Permalink
refactor(linter): renamce flat.rs to config.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
camc314 committed Dec 19, 2024
1 parent d17c142 commit f6523f6
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 f6523f6

Please sign in to comment.