@@ -11,7 +11,6 @@ import (
11
11
diffpkg "github.com/sourcegraph/go-diff/diff"
12
12
"golang.org/x/tools/go/analysis"
13
13
14
- "github.com/golangci/golangci-lint/pkg/config"
15
14
"github.com/golangci/golangci-lint/pkg/goanalysis"
16
15
"github.com/golangci/golangci-lint/pkg/lint/linter"
17
16
"github.com/golangci/golangci-lint/pkg/logutils"
@@ -30,8 +29,6 @@ const (
30
29
diffLineDeleted diffLineType = "deleted"
31
30
)
32
31
33
- type fmtTextFormatter func (settings * config.LintersSettings ) string
34
-
35
32
type diffLine struct {
36
33
originalNumber int // 1-based original line number
37
34
typ diffLineType
@@ -219,7 +216,6 @@ func ExtractDiagnosticFromPatch(
219
216
file * ast.File ,
220
217
patch string ,
221
218
lintCtx * linter.Context ,
222
- formatter fmtTextFormatter ,
223
219
) error {
224
220
diffs , err := diffpkg .ParseMultiFileDiff ([]byte (patch ))
225
221
if err != nil {
@@ -246,23 +242,23 @@ func ExtractDiagnosticFromPatch(
246
242
changes := p .parse (hunk )
247
243
248
244
for _ , change := range changes {
249
- pass .Report (toDiagnostic (ft , change , formatter ( lintCtx . Settings ()), adjLine ))
245
+ pass .Report (toDiagnostic (ft , change , adjLine ))
250
246
}
251
247
}
252
248
}
253
249
254
250
return nil
255
251
}
256
252
257
- func toDiagnostic (ft * token.File , change Change , message string , adjLine int ) analysis.Diagnostic {
253
+ func toDiagnostic (ft * token.File , change Change , adjLine int ) analysis.Diagnostic {
258
254
start := ft .LineStart (change .From + adjLine )
259
255
260
256
end := goanalysis .EndOfLinePos (ft , change .To + adjLine )
261
257
262
258
return analysis.Diagnostic {
263
259
Pos : start ,
264
260
End : end ,
265
- Message : message , // TODO(ldez) change message formatter to have a better message.
261
+ Message : "File is not properly formatted" ,
266
262
SuggestedFixes : []analysis.SuggestedFix {{
267
263
TextEdits : []analysis.TextEdit {{
268
264
Pos : start ,
0 commit comments