mirror of
https://github.com/mgechev/revive.git
synced 2024-11-30 08:57:07 +02:00
10 lines
244 B
Go
10 lines
244 B
Go
|
// should fail if upperCaseConst = false (by default) #851
|
||
|
|
||
|
package fixtures
|
||
|
|
||
|
const SOME_CONST_2 = 1 // MATCH /don't use ALL_CAPS in Go names; use CamelCase/
|
||
|
|
||
|
const (
|
||
|
SOME_CONST_3 = 3 // MATCH /don't use ALL_CAPS in Go names; use CamelCase/
|
||
|
)
|