We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06764f5 commit 7b5ac81Copy full SHA for 7b5ac81
check/check.go
@@ -33,7 +33,9 @@ import (
33
34
// RunChecks runs all checks for the given project and outputs the results.
35
func RunChecks(project project.Type) {
36
- fmt.Printf("Checking %s in %s\n", project.ProjectType, project.Path)
+ if configuration.OutputFormat() == outputformat.Text {
37
+ fmt.Printf("Checking %s in %s\n", project.ProjectType, project.Path)
38
+ }
39
40
checkdata.Initialize(project, configuration.SchemasPath())
41
0 commit comments