Skip to content

Commit

Permalink
chore: regression in benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico committed May 11, 2024
1 parent 7a79dda commit 0b68e30
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion xtask/bench/src/language.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use crate::test_case::TestCase;
use biome_analyze::options::JsxRuntime;
use biome_analyze::{AnalysisFilter, AnalyzerOptions, ControlFlow, Never, RuleCategories};
use biome_css_formatter::context::{CssFormatContext, CssFormatOptions};
use biome_css_parser::CssParserOptions;
Expand Down Expand Up @@ -160,7 +161,8 @@ impl Analyze {
categories: RuleCategories::SYNTAX | RuleCategories::LINT,
..AnalysisFilter::default()
};
let options = AnalyzerOptions::default();
let mut options = AnalyzerOptions::default();
options.configuration.jsx_runtime = Some(JsxRuntime::default());
biome_js_analyze::analyze(
root,
filter,
Expand Down

0 comments on commit 0b68e30

Please sign in to comment.