1
0
mirror of https://github.com/mgechev/revive.git synced 2025-12-05 22:53:41 +02:00

New rule: modifies-parameter (#25)

* Adds rule superfluous-else (an extension of indent-error-flow)

* Fix superfluous-else rule struct namming.

* Adds superfuous-else rule to the rules table

* Adds confusing-naming rule

* adds multifile test

* clean-up

* fix config.go

* working version
This commit is contained in:
chavacava
2018-06-24 09:26:21 +02:00
committed by Minko Gechev
parent 7e89359269
commit b2532b3c33
5 changed files with 134 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package test
import (
"testing"
"github.com/mgechev/revive/rule"
)
// TestModifiesParam rule.
func TestModifiesParam(t *testing.T) {
testRule(t, "modifies-param", &rule.ModifiesParamRule{})
}