@@ -294,10 +294,10 @@ fn lint_std_filesystem() -> LintResult {
294
294
. success ( ) ;
295
295
if found {
296
296
Err ( r#"
297
- ^^^
298
297
Direct use of std::filesystem may be dangerous and buggy. Please include <util/fs.h> and use the
299
298
fs:: namespace, which has unsafe filesystem functions marked as deleted.
300
299
"#
300
+ . trim ( )
301
301
. to_string ( ) )
302
302
} else {
303
303
Ok ( ( ) )
@@ -322,12 +322,12 @@ fn lint_rpc_assert() -> LintResult {
322
322
. success ( ) ;
323
323
if found {
324
324
Err ( r#"
325
- ^^^
326
325
CHECK_NONFATAL(condition) or NONFATAL_UNREACHABLE should be used instead of assert for RPC code.
327
326
328
327
Aborting the whole process is undesirable for RPC code. So nonfatal
329
328
checks should be used over assert. See: src/util/check.h
330
329
"#
330
+ . trim ( )
331
331
. to_string ( ) )
332
332
} else {
333
333
Ok ( ( ) )
@@ -350,10 +350,10 @@ fn lint_boost_assert() -> LintResult {
350
350
. success ( ) ;
351
351
if found {
352
352
Err ( r#"
353
- ^^^
354
353
BOOST_ASSERT must be replaced with Assert, BOOST_REQUIRE, or BOOST_CHECK to avoid an unnecessary
355
354
include of the boost/assert.hpp dependency.
356
355
"#
356
+ . trim ( )
357
357
. to_string ( ) )
358
358
} else {
359
359
Ok ( ( ) )
@@ -370,17 +370,15 @@ fn lint_doc_release_note_snippets() -> LintResult {
370
370
if non_release_notes. is_empty ( ) {
371
371
Ok ( ( ) )
372
372
} else {
373
- Err ( format ! (
374
- r#"
375
- {}
376
- ^^^
373
+ println ! ( "{non_release_notes}" ) ;
374
+ Err ( r#"
377
375
Release note snippets and other docs must be put into the doc/ folder directly.
378
376
379
377
The doc/release-notes/ folder is for archived release notes of previous releases only. Snippets are
380
378
expected to follow the naming "/doc/release-notes-<PR number>.md".
381
- "# ,
382
- non_release_notes
383
- ) )
379
+ "#
380
+ . trim ( )
381
+ . to_string ( ) )
384
382
}
385
383
}
386
384
@@ -423,7 +421,6 @@ fn lint_trailing_whitespace() -> LintResult {
423
421
. success ( ) ;
424
422
if trailing_space {
425
423
Err ( r#"
426
- ^^^
427
424
Trailing whitespace (including Windows line endings [CR LF]) is problematic, because git may warn
428
425
about it, or editors may remove it by default, forcing developers in the future to either undo the
429
426
changes manually or spend time on review.
@@ -433,6 +430,7 @@ Thus, it is best to remove the trailing space now.
433
430
Please add any false positives, such as subtrees, Windows-related files, patch files, or externally
434
431
sourced files to the exclude list.
435
432
"#
433
+ . trim ( )
436
434
. to_string ( ) )
437
435
} else {
438
436
Ok ( ( ) )
@@ -449,14 +447,14 @@ fn lint_tabs_whitespace() -> LintResult {
449
447
. success ( ) ;
450
448
if tabs {
451
449
Err ( r#"
452
- ^^^
453
450
Use of tabs in this codebase is problematic, because existing code uses spaces and tabs will cause
454
451
display issues and conflict with editor settings.
455
452
456
453
Please remove the tabs.
457
454
458
455
Please add any false positives, such as subtrees, or externally sourced files to the exclude list.
459
456
"#
457
+ . trim ( )
460
458
. to_string ( ) )
461
459
} else {
462
460
Ok ( ( ) )
@@ -531,7 +529,6 @@ fn lint_includes_build_config() -> LintResult {
531
529
if missing {
532
530
return Err ( format ! (
533
531
r#"
534
- ^^^
535
532
One or more files use a symbol declared in the bitcoin-build-config.h header. However, they are not
536
533
including the header. This is problematic, because the header may or may not be indirectly
537
534
included. If the indirect include were to be intentionally or accidentally removed, the build could
@@ -547,12 +544,13 @@ include again.
547
544
#include <bitcoin-build-config.h> // IWYU pragma: keep
548
545
"# ,
549
546
defines_regex
550
- ) ) ;
547
+ )
548
+ . trim ( )
549
+ . to_string ( ) ) ;
551
550
}
552
551
let redundant = print_affected_files ( false ) ;
553
552
if redundant {
554
553
return Err ( r#"
555
- ^^^
556
554
None of the files use a symbol declared in the bitcoin-build-config.h header. However, they are including
557
555
the header. Consider removing the unused include.
558
556
"#
@@ -605,7 +603,9 @@ Markdown link errors found:
605
603
{}
606
604
"# ,
607
605
stderr
608
- ) )
606
+ )
607
+ . trim ( )
608
+ . to_string ( ) )
609
609
}
610
610
Err ( e) if e. kind ( ) == ErrorKind :: NotFound => {
611
611
println ! ( "`mlc` was not found in $PATH, skipping markdown lint check." ) ;
@@ -657,10 +657,9 @@ fn main() -> ExitCode {
657
657
env:: set_current_dir ( & git_root) . unwrap ( ) ;
658
658
if let Err ( err) = ( linter. lint_fn ) ( ) {
659
659
println ! (
660
- "{err}\n ^---- ⚠️ Failure generated from lint check '{}'! " ,
661
- linter. name
660
+ "^^^ \n {err}\n ^---- ⚠️ Failure generated from lint check '{}' ({})! \n \n " ,
661
+ linter. name, linter . description ,
662
662
) ;
663
- println ! ( "{}\n \n " , linter. description) ;
664
663
test_failed = true ;
665
664
}
666
665
}
0 commit comments