Skip to content

Commit 0b6c229

Browse files
committed
chore(rustfix): remove useless clippy rules
Signed-off-by: hi-rustin <[email protected]>
1 parent b8e2f75 commit 0b6c229

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

crates/rustfix/examples/fix-json.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
#![allow(clippy::disallowed_methods, clippy::print_stdout, clippy::print_stderr)]
1+
#![allow(clippy::print_stderr)]
22

3-
use anyhow::Error;
43
use std::io::{stdin, BufReader, Read};
54
use std::{collections::HashMap, collections::HashSet, env, fs};
65

6+
use anyhow::Error;
7+
78
fn main() -> Result<(), Error> {
89
let suggestions_file = env::args().nth(1).expect("USAGE: fix-json <file or -->");
910
let suggestions = if suggestions_file == "--" {

0 commit comments

Comments
 (0)