Skip to content

Commit 68b4a43

Browse files
committed
Remove stderr limit
1 parent 22606e7 commit 68b4a43

File tree

4 files changed

+1
-63
lines changed

4 files changed

+1
-63
lines changed

.github/workflows/clippy_dev.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@ jobs:
4242
run: cargo build --features deny-warnings
4343
working-directory: clippy_dev
4444

45-
- name: Test limit_stderr_length
46-
run: cargo dev limit_stderr_length
47-
4845
- name: Test update_lints
4946
run: cargo dev update_lints --check
5047

clippy_dev/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ pub mod fmt;
1717
pub mod new_lint;
1818
pub mod serve;
1919
pub mod setup;
20-
pub mod stderr_length_check;
2120
pub mod update_lints;
2221

2322
static DEC_CLIPPY_LINT_RE: SyncLazy<Regex> = SyncLazy::new(|| {

clippy_dev/src/main.rs

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#![warn(rust_2018_idioms, unused_lifetimes)]
44

55
use clap::{App, AppSettings, Arg, ArgMatches, SubCommand};
6-
use clippy_dev::{bless, fmt, new_lint, serve, setup, stderr_length_check, update_lints};
6+
use clippy_dev::{bless, fmt, new_lint, serve, setup, update_lints};
77
fn main() {
88
let matches = get_clap_config();
99

@@ -33,9 +33,6 @@ fn main() {
3333
Err(e) => eprintln!("Unable to create lint: {}", e),
3434
}
3535
},
36-
("limit_stderr_length", _) => {
37-
stderr_length_check::check();
38-
},
3936
("setup", Some(sub_command)) => match sub_command.subcommand() {
4037
("intellij", Some(matches)) => setup::intellij::setup_rustc_src(
4138
matches
@@ -152,10 +149,6 @@ fn get_clap_config<'a>() -> ArgMatches<'a> {
152149
.takes_value(true),
153150
),
154151
)
155-
.subcommand(
156-
SubCommand::with_name("limit_stderr_length")
157-
.about("Ensures that stderr files do not grow longer than a certain amount of lines."),
158-
)
159152
.subcommand(
160153
SubCommand::with_name("setup")
161154
.about("Support for setting up your personal development environment")

clippy_dev/src/stderr_length_check.rs

Lines changed: 0 additions & 51 deletions
This file was deleted.

0 commit comments

Comments
 (0)