We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb6e357 commit 65bd558Copy full SHA for 65bd558
apps/oxlint/src/run.rs
@@ -104,7 +104,7 @@ async fn lint_impl(
104
105
// JS plugins are only supported on 64-bit little-endian platforms at present
106
#[cfg(all(target_pointer_width = "64", target_endian = "little"))]
107
- let external_linter = Some(super::js_plugins::create_external_linter(load_plugin, lint_file));
+ let external_linter = Some(crate::js_plugins::create_external_linter(load_plugin, lint_file));
108
#[cfg(not(all(target_pointer_width = "64", target_endian = "little")))]
109
let external_linter = {
110
let (_, _) = (load_plugin, lint_file);
0 commit comments