1
0
mirror of https://github.com/mgechev/revive.git synced 2025-11-27 22:18:41 +02:00

Update main.go

This commit is contained in:
mgechev
2018-01-25 11:47:39 -08:00
parent 3c3a6b538d
commit faa19bd4c1

View File

@@ -23,14 +23,13 @@ func main() {
func foo_bar(a int, b int, c int, d int) {
return a + b + c;
}
`
}`
revive := lint.New(func(file string) ([]byte, error) {
return []byte(src), nil
})
var result []lint.Rule
result = append(result, &rule.LintElseRule{}, &rule.ArgumentsLimitRule{}, &rule.NamesRule{})
result = append(result, &rule.ElseRule{}, &rule.ArgumentsLimitRule{}, &rule.NamesRule{})
var config = lint.RulesConfig{
"argument-limit": lint.RuleConfig{