mirror of
https://github.com/mgechev/revive.git
synced 2025-04-02 22:05:32 +02:00
parent
7c2ebbda24
commit
3116818e59
@ -11,17 +11,19 @@ import (
|
|||||||
|
|
||||||
// FunctionLength lint.
|
// FunctionLength lint.
|
||||||
type FunctionLength struct {
|
type FunctionLength struct {
|
||||||
maxStmt int
|
maxStmt int
|
||||||
maxLines int
|
maxLines int
|
||||||
|
configured bool
|
||||||
sync.Mutex
|
sync.Mutex
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *FunctionLength) configure(arguments lint.Arguments) {
|
func (r *FunctionLength) configure(arguments lint.Arguments) {
|
||||||
r.Lock()
|
r.Lock()
|
||||||
if r.maxLines == 0 {
|
if !r.configured {
|
||||||
maxStmt, maxLines := r.parseArguments(arguments)
|
maxStmt, maxLines := r.parseArguments(arguments)
|
||||||
r.maxStmt = int(maxStmt)
|
r.maxStmt = int(maxStmt)
|
||||||
r.maxLines = int(maxLines)
|
r.maxLines = int(maxLines)
|
||||||
|
r.configured = true
|
||||||
}
|
}
|
||||||
r.Unlock()
|
r.Unlock()
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user