Skip to content

Commit f92bd16

Browse files
committed
Increased STDERR line length limit from 275 to 300
1 parent 0189a41 commit f92bd16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clippy_dev/src/stderr_length_check.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use std::io::prelude::*;
77
// The maximum length allowed for stderr files.
88
//
99
// We limit this because small files are easier to deal with than bigger files.
10-
const LIMIT: usize = 275;
10+
const LIMIT: usize = 300;
1111

1212
pub fn check() {
1313
let stderr_files = stderr_files();

0 commit comments

Comments
 (0)