Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions apps/oxlint/src/js_plugins/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
mod raw_fs;

pub use raw_fs::RawTransferFileSystem;
File renamed without changes.
2 changes: 1 addition & 1 deletion apps/oxlint/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ pub use oxc_linter::{
};

mod command;
mod js_plugins;
mod lint;
mod output_formatter;
mod raw_fs;
mod result;
mod tester;
mod walk;
Expand Down
2 changes: 1 addition & 1 deletion apps/oxlint/src/lint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ use oxc_linter::{

use crate::{
cli::{CliRunResult, LintCommand, MiscOptions, ReportUnusedDirectives, WarningOptions},
js_plugins::RawTransferFileSystem,
output_formatter::{LintCommandInfo, OutputFormatter},
walk::Walk,
};
Expand Down Expand Up @@ -367,7 +368,6 @@ impl LintRunner {
// Use `RawTransferFileSystem` if `ExternalLinter` exists.
// This reads the source text into start of allocator, instead of the end.
if has_external_linter {
use crate::raw_fs::RawTransferFileSystem;
lint_service.with_file_system(Box::new(RawTransferFileSystem));
}

Expand Down
Loading