diff --git a/src/build/check/js/linter.rs b/src/build/check/js/linter.rs index e8a9e577d..a013ac3c7 100644 --- a/src/build/check/js/linter.rs +++ b/src/build/check/js/linter.rs @@ -45,9 +45,7 @@ fn match_error_to_source_map( Ok(failure::format_err!("Thanks for providing us with a source map! Soon hopefully we will be able to tell you what part of your original source code is bad. Unfortunately, for now, all we can say is\n{}", error)) } -// TODO all of these need to also take a reference to what's available / unavailable - -/// By implementing Lintable for Vec, we can call `ast.lint(false)` +/// By implementing Lintable for Vec, we can call `ast.lint(args)` /// at the top level and recurse through the whole AST /// /// Note: Ideally, the type signature would actually be more general,