forked from bradleyfalzon/revgrep
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathissue.go
37 lines (32 loc) · 939 Bytes
/
issue.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package revgrep
// Issue contains metadata about an issue found.
type Issue struct {
// File is the name of the file as it appeared from the patch.
File string
// LineNo is the line number of the file.
LineNo int
// ColNo is the column number or 0 if none could be parsed.
ColNo int
// HunkPos is position from file's first @@, for new files this will be the line number.
// See also: https://developer.github.com/v3/pulls/comments/#create-a-comment
HunkPos int
// Issue text as it appeared from the tool.
Issue string
// Message is the issue without file name, line number and column number.
Message string
}
// InputIssue represents issue found by some linter.
type InputIssue interface {
FilePath() string
Line() int
}
type simpleInputIssue struct {
filePath string
lineNumber int
}
func (i simpleInputIssue) FilePath() string {
return i.filePath
}
func (i simpleInputIssue) Line() int {
return i.lineNumber
}