@@ -337,12 +337,16 @@ pub fn check(path: &Path, bad: &mut bool) {
337
337
. case_insensitive ( true )
338
338
. build ( )
339
339
. unwrap ( ) ;
340
- let style_file = Path :: new ( file ! ( ) ) ;
340
+
341
+ // In some cases, a style check would be triggered by its own implementation
342
+ // or comments. A simple workaround is to just allowlist this file.
343
+ let this_file = Path :: new ( file ! ( ) ) ;
344
+
341
345
walk ( path, skip, & mut |entry, contents| {
342
346
let file = entry. path ( ) ;
343
347
let filename = file. file_name ( ) . unwrap ( ) . to_string_lossy ( ) ;
344
348
345
- let is_style_file = filename. ends_with ( ".css" ) ;
349
+ let is_css_file = filename. ends_with ( ".css" ) ;
346
350
let under_rustfmt = filename. ends_with ( ".rs" ) &&
347
351
// This list should ideally be sourced from rustfmt.toml but we don't want to add a toml
348
352
// parser to tidy.
@@ -405,13 +409,13 @@ pub fn check(path: &Path, bad: &mut bool) {
405
409
let mut comment_block: Option < ( usize , usize ) > = None ;
406
410
let is_test = file. components ( ) . any ( |c| c. as_os_str ( ) == "tests" )
407
411
|| file. file_stem ( ) . unwrap ( ) == "tests" ;
408
- let is_style = file. ends_with ( style_file ) || style_file . ends_with ( file) ;
409
- let is_style_test =
410
- is_test && file. parent ( ) . unwrap ( ) . ends_with ( style_file . with_extension ( "" ) ) ;
412
+ let is_this_file = file. ends_with ( this_file ) || this_file . ends_with ( file) ;
413
+ let is_test_for_this_file =
414
+ is_test && file. parent ( ) . unwrap ( ) . ends_with ( this_file . with_extension ( "" ) ) ;
411
415
// scanning the whole file for multiple needles at once is more efficient than
412
416
// executing lines times needles separate searches.
413
417
let any_problematic_line =
414
- !is_style && !is_style_test && problematic_regex. is_match ( contents) ;
418
+ !is_this_file && !is_test_for_this_file && problematic_regex. is_match ( contents) ;
415
419
for ( i, line) in contents. split ( '\n' ) . enumerate ( ) {
416
420
if line. is_empty ( ) {
417
421
if i == 0 {
@@ -458,19 +462,19 @@ pub fn check(path: &Path, bad: &mut bool) {
458
462
"line longer than {max_columns} chars"
459
463
) ;
460
464
}
461
- if !is_style_file && line. contains ( '\t' ) {
465
+ if !is_css_file && line. contains ( '\t' ) {
462
466
suppressible_tidy_err ! ( err, skip_tab, "tab character" ) ;
463
467
}
464
468
if line. ends_with ( ' ' ) || line. ends_with ( '\t' ) {
465
469
suppressible_tidy_err ! ( err, skip_end_whitespace, "trailing whitespace" ) ;
466
470
}
467
- if is_style_file && line. starts_with ( ' ' ) {
471
+ if is_css_file && line. starts_with ( ' ' ) {
468
472
err ( "CSS files use tabs for indent" ) ;
469
473
}
470
474
if line. contains ( '\r' ) {
471
475
suppressible_tidy_err ! ( err, skip_cr, "CR character" ) ;
472
476
}
473
- if !is_style {
477
+ if !is_this_file {
474
478
// Allow using TODO in diagnostic suggestions by marking the
475
479
// relevant line with `// ignore-tidy-todo`.
476
480
if trimmed. contains ( "TODO" ) && !trimmed. contains ( "ignore-tidy-todo" ) {
0 commit comments