Skip to content

Commit

Permalink
Decrease line length limit for stderr files
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnTitor committed Jan 30, 2020
1 parent 17489ef commit 411317b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clippy_dev/src/stderr_length_check.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use std::io::prelude::*;
// The maximum length allowed for stderr files.
//
// We limit this because small files are easier to deal with than bigger files.
const LIMIT: usize = 245;
const LIMIT: usize = 220;

pub fn check() {
let stderr_files = stderr_files();
Expand Down

0 comments on commit 411317b

Please sign in to comment.