1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00

update: deno_lint to v0.1.10 (#6248)

* update: deno lint to v0.1.10

* Parallelize "deno lint" subcommand
This commit is contained in:
Bartek Iwańczuk 2020-06-12 01:44:17 +02:00 committed by GitHub
parent 6ccf9037a6
commit e7054d50f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 56 additions and 44 deletions

4
Cargo.lock generated
View file

@ -506,9 +506,9 @@ dependencies = [
[[package]] [[package]]
name = "deno_lint" name = "deno_lint"
version = "0.1.9" version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "886dbbba1d26b726e4e6c4c03001b7f21b31384acb2a038e5bce430c42de4190" checksum = "dc10bb331262fd598e6925ab8b59f72b01cc9c3a5a818ce7d57652e4b23fe45a"
dependencies = [ dependencies = [
"lazy_static", "lazy_static",
"regex", "regex",

View file

@ -20,7 +20,7 @@ deno_typescript = { path = "../deno_typescript", version = "0.47.1" }
[dependencies] [dependencies]
deno_core = { path = "../core", version = "0.47.1" } deno_core = { path = "../core", version = "0.47.1" }
deno_lint = { version = "0.1.9" } deno_lint = { version = "0.1.10" }
deno_typescript = { path = "../deno_typescript", version = "0.47.1" } deno_typescript = { path = "../deno_typescript", version = "0.47.1" }
atty = "0.2.14" atty = "0.2.14"

View file

@ -264,7 +264,7 @@ fn write_file_contents(
Ok(fs::write(file_path, file_text)?) Ok(fs::write(file_path, file_text)?)
} }
async fn run_parallelized<F>( pub async fn run_parallelized<F>(
file_paths: Vec<PathBuf>, file_paths: Vec<PathBuf>,
f: F, f: F,
) -> Result<(), ErrBox> ) -> Result<(), ErrBox>

View file

@ -10,6 +10,7 @@
use crate::colors; use crate::colors;
use crate::file_fetcher::map_file_extension; use crate::file_fetcher::map_file_extension;
use crate::fmt::collect_files; use crate::fmt::collect_files;
use crate::fmt::run_parallelized;
use crate::fmt_errors; use crate::fmt_errors;
use crate::swc_util; use crate::swc_util;
use deno_core::ErrBox; use deno_core::ErrBox;
@ -18,36 +19,71 @@ use deno_lint::linter::Linter;
use deno_lint::rules; use deno_lint::rules;
use std::fs; use std::fs;
use std::path::PathBuf; use std::path::PathBuf;
use std::sync::atomic::{AtomicUsize, Ordering};
use std::sync::{Arc, Mutex};
pub fn lint_files(args: Vec<String>) -> Result<(), ErrBox> { pub async fn lint_files(args: Vec<String>) -> Result<(), ErrBox> {
let target_files = collect_files(args)?; let target_files = collect_files(args)?;
debug!("Found {} files", target_files.len());
let mut error_counts = 0; let error_count = Arc::new(AtomicUsize::new(0));
for file_path in target_files { // prevent threads outputting at the same time
let file_diagnostics = lint_file(file_path)?; let output_lock = Arc::new(Mutex::new(0));
error_counts += file_diagnostics.len();
for d in file_diagnostics.iter() { run_parallelized(target_files, {
let fmt_diagnostic = format_diagnostic(d); let error_count = error_count.clone();
eprintln!("{}\n", fmt_diagnostic); move |file_path| {
let r = lint_file(file_path.clone());
match r {
Ok(file_diagnostics) => {
error_count.fetch_add(file_diagnostics.len(), Ordering::SeqCst);
let _g = output_lock.lock().unwrap();
for d in file_diagnostics.iter() {
let fmt_diagnostic = format_diagnostic(d);
eprintln!("{}\n", fmt_diagnostic);
}
}
Err(err) => {
eprintln!("Error linting: {}", file_path.to_string_lossy());
eprintln!(" {}", err);
}
}
Ok(())
} }
} })
.await?;
if error_counts > 0 { let error_count = error_count.load(Ordering::SeqCst);
eprintln!("Found {} problems", error_counts); if error_count > 0 {
eprintln!("Found {} problems", error_count);
std::process::exit(1); std::process::exit(1);
} }
Ok(()) Ok(())
} }
fn create_linter() -> Linter {
Linter::new(
"deno-lint-ignore-file".to_string(),
vec![
"deno-lint-ignore".to_string(),
"eslint-disable-next-line".to_string(),
],
// TODO(bartlomieju): switch to true, once
// https://github.com/denoland/deno_lint/issues/156 is fixed
false,
)
}
fn lint_file(file_path: PathBuf) -> Result<Vec<LintDiagnostic>, ErrBox> { fn lint_file(file_path: PathBuf) -> Result<Vec<LintDiagnostic>, ErrBox> {
let file_name = file_path.to_string_lossy().to_string(); let file_name = file_path.to_string_lossy().to_string();
let source_code = fs::read_to_string(&file_path)?; let source_code = fs::read_to_string(&file_path)?;
let media_type = map_file_extension(&file_path); let media_type = map_file_extension(&file_path);
let syntax = swc_util::get_syntax_for_media_type(media_type); let syntax = swc_util::get_syntax_for_media_type(media_type);
let mut linter = Linter::default(); let mut linter = create_linter();
let lint_rules = rules::get_recommended_rules(); let lint_rules = rules::get_recommended_rules();
let file_diagnostics = let file_diagnostics =

View file

@ -331,7 +331,7 @@ async fn lint_command(flags: Flags, files: Vec<String>) -> Result<(), ErrBox> {
)?; )?;
state.check_unstable("lint"); state.check_unstable("lint");
lint::lint_files(files) lint::lint_files(files).await
} }
async fn cache_command(flags: Flags, files: Vec<String>) -> Result<(), ErrBox> { async fn cache_command(flags: Flags, files: Vec<String>) -> Result<(), ErrBox> {

View file

@ -1,26 +1,2 @@
(ban-untagged-ignore) Ignore directive requires lint rule code [WILDCARD]
// deno-lint-ignore Found 3 problems
~~~~~~~~~~~~~~~~~~~
at [WILDCARD]file1.js:1:0
(no-empty) Empty block statement
while (false) {}
~~
at [WILDCARD]file1.js:2:14
(no-empty) Empty block statement
} catch (e) {}
~~
at [WILDCARD]file2.ts:3:12
(ban-unused-ignore) Ignore for code "require-await" was not used.
// deno-lint-ignore no-explicit-any require-await
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
at [WILDCARD]file2.ts:5:0
(no-empty-function) Empty functions are not allowed
function foo(): any {}
~~~~~~~~~~~~~~~~~~~~~~
at [WILDCARD]file2.ts:6:0
Found 5 problems

View file

@ -1,2 +1,2 @@
[WILDCARD] [WILDCARD]
Found 5 problems Found 3 problems