Skip to content

Commit

Permalink
refactor(language_server)!: use .oxlintrc.json when no config path …
Browse files Browse the repository at this point in the history
…provided (#8027)

Will break for other IDEs when they do not self provide an default value
  • Loading branch information
Sysix authored Dec 20, 2024
1 parent de8246b commit 5722346
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/oxc_language_server/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ struct Options {

impl Default for Options {
fn default() -> Self {
Self { enable: true, run: Run::default(), config_path: ".eslintrc".into() }
Self { enable: true, run: Run::default(), config_path: ".oxlintrc.json".into() }
}
}

Expand Down

0 comments on commit 5722346

Please sign in to comment.