93
94 macro_rules! extra_check {
95▶ ($lang:ident, $kind:ident) => {
96 lint_args.iter().any(|arg| arg.matches(ExtraCheckLang::$lang, ExtraCheckKind::$kind))
97 };
· · ·
96▶ lint_args.iter().any(|arg| arg.matches(ExtraCheckLang::$lang, ExtraCheckKind::$kind))
97 };
98 }
· · ·
182 Ok(p) => Some(p),
183 Err(e) => {
184▶ check.error(e);
185 None
186 }
· · ·
192
193 if let Err(e) = rustdoc_js::npm_install(root_path, outdir, npm) {
194▶ check.error(e.to_string());
195 return None;
196 }
· · ·
229 {
230 show_bless_help("spellcheck", "fix typos", bless);
231▶ check.error(e);
232 }
233}
+ 82 more matches in this file