@@ -28,7 +28,7 @@ mod output;
28
28
mod popular_crates;
29
29
mod recursive;
30
30
31
- use crate :: config:: { Commands , LintcheckConfig , OutputFormat } ;
31
+ use crate :: config:: { Commands , LintCheckConfig , OutputFormat } ;
32
32
use crate :: recursive:: LintcheckServer ;
33
33
34
34
use std:: env:: consts:: EXE_SUFFIX ;
@@ -66,7 +66,7 @@ impl Crate {
66
66
clippy_driver_path : & Path ,
67
67
target_dir_index : & AtomicUsize ,
68
68
total_crates_to_lint : usize ,
69
- config : & LintcheckConfig ,
69
+ config : & LintCheckConfig ,
70
70
lint_levels_args : & [ String ] ,
71
71
server : & Option < LintcheckServer > ,
72
72
) -> Vec < ClippyCheckOutput > {
@@ -257,7 +257,7 @@ fn main() {
257
257
std:: process:: exit ( 3 ) ;
258
258
}
259
259
260
- let config = LintcheckConfig :: new ( ) ;
260
+ let config = LintCheckConfig :: new ( ) ;
261
261
262
262
match config. subcommand {
263
263
Some ( Commands :: Diff { old, new, truncate } ) => json:: diff ( & old, & new, truncate) ,
@@ -267,7 +267,7 @@ fn main() {
267
267
}
268
268
269
269
#[ allow( clippy:: too_many_lines) ]
270
- fn lintcheck ( config : LintcheckConfig ) {
270
+ fn lintcheck ( config : LintCheckConfig ) {
271
271
let clippy_ver = build_clippy ( ) ;
272
272
let clippy_driver_path = fs:: canonicalize ( format ! ( "target/debug/clippy-driver{EXE_SUFFIX}" ) ) . unwrap ( ) ;
273
273
0 commit comments