1
0
mirror of https://github.com/mgechev/revive.git synced 2024-11-24 08:32:22 +02:00
revive/main.go
2018-01-27 16:22:17 -08:00

67 lines
1.1 KiB
Go

package main
import (
"fmt"
"io/ioutil"
"os"
"github.com/mgechev/revive/lint"
)
const banner = `
Welcome to:
_ __ _____ _(_)__ _____
| '__/ _ \ \ / / \ \ / / _ \
| | | __/\ V /| |\ V / __/
|_| \___| \_/ |_| \_/ \___|
`
func main() {
config := getConfig()
formatter := getFormatter()
files := getFiles()
revive := lint.New(func(file string) ([]byte, error) {
return ioutil.ReadFile(file)
})
lintingRules := getLintingRules(config)
failures, err := revive.Lint(files, lintingRules, config.Rules)
if err != nil {
panic(err)
}
formatChan := make(chan lint.Failure)
exitChan := make(chan bool)
var output string
go (func() {
output, err = formatter.Format(formatChan, config.Rules)
if err != nil {
panic(err)
}
exitChan <- true
})()
exitCode := 0
for f := range failures {
if f.Confidence < config.Confidence {
continue
}
if exitCode == 0 {
exitCode = 1
}
if c, ok := config.Rules[f.RuleName]; ok && c.Severity == lint.SeverityError {
exitCode = 2
}
formatChan <- f
}
close(formatChan)
<-exitChan
fmt.Println(output)
os.Exit(exitCode)
}