mirror of
https://github.com/gojp/goreportcard.git
synced 2026-01-28 22:39:05 +08:00
10 lines
226 B
Go
10 lines
226 B
Go
package check
|
|
|
|
type Check interface {
|
|
Name() string
|
|
Description() string
|
|
// Percentage returns the passing percentage of the check,
|
|
// as well as a map of filename to output
|
|
Percentage() (float64, []FileSummary, error)
|
|
}
|