File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,7 @@ func ArduinoLint(rootCommand *cobra.Command, cliArguments []string) {
8080
8181 // Print the project rule results summary.
8282 feedback .Printf ("\n %s\n " , result .Results .ProjectSummaryText (project ))
83+ feedback .Print ("\n -------------------\n \n " )
8384 }
8485
8586 // All projects have been linted, so summarize their rule results in the report.
@@ -88,7 +89,7 @@ func ArduinoLint(rootCommand *cobra.Command, cliArguments []string) {
8889 if configuration .OutputFormat () == outputformat .Text {
8990 if len (projects ) > 1 {
9091 // There are multiple projects, print the summary of rule results for all projects.
91- fmt .Printf ( " \n %s \n " , result .Results .SummaryText ())
92+ fmt .Println ( result .Results .SummaryText ())
9293 }
9394 } else {
9495 // Print the complete JSON formatted report.
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ import (
3232
3333// Runner runs all rules for the given project and outputs the results.
3434func Runner (project project.Type ) {
35- feedback .Printf ("\n Linting %s in %s\n " , project .ProjectType , project .Path )
35+ feedback .Printf ("Linting %s in %s\n " , project .ProjectType , project .Path )
3636
3737 projectdata .Initialize (project )
3838
You can’t perform that action at this time.
0 commit comments