mirror of
https://github.com/mgechev/revive.git
synced 2024-12-04 10:24:49 +02:00
a4da5361d2
Fix #1
13 lines
231 B
Go
13 lines
231 B
Go
package test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mgechev/revive/lint"
|
|
"github.com/mgechev/revive/rule"
|
|
)
|
|
|
|
func TestDisabledAnnotations(t *testing.T) {
|
|
testRule(t, "disable-annotations", &rule.ExportedRule{}, &lint.RuleConfig{})
|
|
}
|