@@ -4083,6 +4083,8 @@ issues:
4083
4083
output :
4084
4084
# The formats used to render issues.
4085
4085
formats :
4086
+ # Reports issues in a text format with colors, line number, and linter name.
4087
+ # This format is the default format.
4086
4088
text :
4087
4089
# Output path can be either `stdout`, `stderr` or path to the file to write to.
4088
4090
# Default: stdout
@@ -4096,10 +4098,12 @@ output:
4096
4098
# Use colors.
4097
4099
# Default: true
4098
4100
colors : false
4101
+ # Reports issues in a JSON format.
4099
4102
json :
4100
4103
# Output path can be either `stdout`, `stderr` or path to the file to write to.
4101
4104
# Default: stdout
4102
4105
path : ./path/to/output.json
4106
+ # Reports issues in columns separated by tabulations.
4103
4107
tab :
4104
4108
# Output path can be either `stdout`, `stderr` or path to the file to write to.
4105
4109
# Default: stdout
@@ -4110,29 +4114,35 @@ output:
4110
4114
# Use colors.
4111
4115
# Default: true
4112
4116
colors : false
4117
+ # Reports issues in an HTML format.
4113
4118
html :
4114
4119
# Output path can be either `stdout`, `stderr` or path to the file to write to.
4115
4120
# Default: stdout
4116
4121
path : ./path/to/output.html
4122
+ # Reports issues in a Checkstyle format.
4117
4123
checkstyle :
4118
4124
# Output path can be either `stdout`, `stderr` or path to the file to write to.
4119
4125
# Default: stdout
4120
4126
path : ./path/to/output.xml
4127
+ # Reports issues in a Code Climate format.
4121
4128
code-climate :
4122
4129
# Output path can be either `stdout`, `stderr` or path to the file to write to.
4123
4130
# Default: stdout
4124
4131
path : ./path/to/output.json
4132
+ # Reports issues in a JUnit XML format.
4125
4133
junit-xml :
4126
4134
# Output path can be either `stdout`, `stderr` or path to the file to write to.
4127
4135
# Default: stdout
4128
4136
path : ./path/to/output.xml
4129
4137
# Support extra JUnit XML fields.
4130
4138
# Default: false
4131
4139
extended : true
4140
+ # Reports issues in a Teamcity format.
4132
4141
teamcity :
4133
4142
# Output path can be either `stdout`, `stderr` or path to the file to write to.
4134
4143
# Default: stdout
4135
4144
path : ./path/to/output.txt
4145
+ # Reports issues in a SARIF format.
4136
4146
sarif :
4137
4147
# Output path can be either `stdout`, `stderr` or path to the file to write to.
4138
4148
# Default: stdout
0 commit comments