mirror of
https://github.com/mgechev/revive.git
synced 2025-11-25 22:12:38 +02:00
renames fixtures as testdata to avoid spurious dependencies (#359)
This commit is contained in:
23
testdata/disable-annotations.go
vendored
Normal file
23
testdata/disable-annotations.go
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
package fixtures
|
||||
|
||||
//revive:disable
|
||||
func Public1() {
|
||||
}
|
||||
|
||||
//revive:enable
|
||||
|
||||
func Public2() { // MATCH /exported function Public2 should have comment or be unexported/
|
||||
}
|
||||
|
||||
//revive:disable:exported
|
||||
func Public3() {
|
||||
}
|
||||
|
||||
//revive:enable:exported
|
||||
|
||||
//revive:disable:random
|
||||
|
||||
func Public4() { // MATCH /exported function Public4 should have comment or be unexported/
|
||||
}
|
||||
|
||||
//revive:enable:random
|
||||
Reference in New Issue
Block a user