Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.3 KiB
67 lines
1.3 KiB
package rule |
|
|
|
import ( |
|
"fmt" |
|
"go/ast" |
|
|
|
"github.com/mgechev/revive/lint" |
|
) |
|
|
|
// ArgumentsLimitRule lints given else constructs. |
|
type ArgumentsLimitRule struct{} |
|
|
|
// Apply applies the rule to given file. |
|
func (r *ArgumentsLimitRule) Apply(file *lint.File, arguments lint.Arguments) []lint.Failure { |
|
if len(arguments) != 1 { |
|
panic(`invalid configuration for "argument-limit"`) |
|
} |
|
|
|
total, ok := arguments[0].(int64) // Alt. non panicking version |
|
if !ok { |
|
panic(`invalid value passed as argument number to the "argument-list" rule`) |
|
} |
|
|
|
var failures []lint.Failure |
|
|
|
walker := lintArgsNum{ |
|
total: int(total), |
|
onFailure: func(failure lint.Failure) { |
|
failures = append(failures, failure) |
|
}, |
|
} |
|
|
|
ast.Walk(walker, file.AST) |
|
|
|
return failures |
|
} |
|
|
|
// Name returns the rule name. |
|
func (r *ArgumentsLimitRule) Name() string { |
|
return "argument-limit" |
|
} |
|
|
|
type lintArgsNum struct { |
|
total int |
|
onFailure func(lint.Failure) |
|
} |
|
|
|
func (w lintArgsNum) Visit(n ast.Node) ast.Visitor { |
|
node, ok := n.(*ast.FuncDecl) |
|
if ok { |
|
num := 0 |
|
for _, l := range node.Type.Params.List { |
|
for range l.Names { |
|
num++ |
|
} |
|
} |
|
if num > w.total { |
|
w.onFailure(lint.Failure{ |
|
Confidence: 1, |
|
Failure: fmt.Sprintf("maximum number of arguments per function exceeded; max %d but got %d", w.total, num), |
|
Node: node.Type, |
|
}) |
|
return w |
|
} |
|
} |
|
return w |
|
}
|
|
|