mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
lint
This commit is contained in:
parent
61ea7e91a7
commit
a95ea7e142
@ -33,7 +33,7 @@ pub enum LintResult {
|
||||
},
|
||||
/// File was not parsed and linted because, eg. it might have
|
||||
/// been a minified file.
|
||||
Skipped { diagnostic: LintDiagnostic },
|
||||
Skipped { diagnostic: Box<LintDiagnostic> },
|
||||
}
|
||||
|
||||
pub struct CliLinterOptions {
|
||||
@ -121,11 +121,11 @@ impl CliLinter {
|
||||
custom_docs_url: None,
|
||||
info: vec![],
|
||||
};
|
||||
let diagnostic = LintDiagnostic {
|
||||
let diagnostic = Box::new(LintDiagnostic {
|
||||
specifier,
|
||||
range: None,
|
||||
details,
|
||||
};
|
||||
});
|
||||
return Ok(LintResult::Skipped { diagnostic });
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user