1
0
mirror of https://github.com/mgechev/revive.git synced 2025-02-03 13:11:25 +02:00
revive/testdata/var-naming_upperCaseConst-true.go
Fagim Sadykov 8941d19026
imporve var-naming - add upperCaseConst option to allow UPPER_CASED constants #851 (#852)
* imporve `var-naming`  - add upperCaseConst  option to allow UPPER_CASED constants #851

Co-authored-by: chavacava <salvadorcavadini+github@gmail.com>
2023-07-31 09:09:38 +02:00

11 lines
129 B
Go

// should pass if upperCaseConst = true
package fixtures
const SOME_CONST_2 = 2
const (
SOME_CONST_3 = 3
VER = 0
)