diff options
| author | Yuki Okushi <huyuumi.dev@gmail.com> | 2020-01-30 12:08:38 +0900 |
|---|---|---|
| committer | Yuki Okushi <huyuumi.dev@gmail.com> | 2020-01-30 12:08:38 +0900 |
| commit | 411317bd2c5964f1ff4841bcdc6e565ea641c8d2 (patch) | |
| tree | 9ee7084b8f070213de93a33326238747f1d34188 /clippy_dev | |
| parent | 17489ef81175f9116dad5d4adcea232586e0a5ff (diff) | |
| download | rust-411317bd2c5964f1ff4841bcdc6e565ea641c8d2.tar.gz rust-411317bd2c5964f1ff4841bcdc6e565ea641c8d2.zip | |
Decrease line length limit for stderr files
Diffstat (limited to 'clippy_dev')
| -rw-r--r-- | clippy_dev/src/stderr_length_check.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_dev/src/stderr_length_check.rs b/clippy_dev/src/stderr_length_check.rs index df11bf02ef3..3319ec82ed0 100644 --- a/clippy_dev/src/stderr_length_check.rs +++ b/clippy_dev/src/stderr_length_check.rs @@ -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(); |
