1
Fork 0

Fix false positive with DOC_MARKDOWN and 32MiB

This commit is contained in:
mcarton 2016-04-04 20:18:17 +02:00
parent 67fb0e17c1
commit ee907b73a4
4 changed files with 39 additions and 8 deletions

View file

@ -233,7 +233,7 @@ pub fn plugin_registrar(reg: &mut Registry) {
reg.register_late_lint_pass(box new_without_default::NewWithoutDefault);
reg.register_late_lint_pass(box blacklisted_name::BlackListedName::new(conf.blacklisted_names));
reg.register_late_lint_pass(box functions::Functions::new(conf.too_many_arguments_threshold));
reg.register_early_lint_pass(box doc::Doc);
reg.register_early_lint_pass(box doc::Doc::new(conf.doc_valid_idents));
reg.register_lint_group("clippy_pedantic", vec![
array_indexing::INDEXING_SLICING,