Sign in
foss-fpga-tools
/
third_party
/
verible
/
67b8fe74e31f81ac1d1fc943997f049a19e06673
/
.
/
verible
/
verilog
/
tools
/
lint
/
testdata
/
enum_name_style.sv
blob: b16fa17284e2a13059703e651a5b0c760c6d347e [
file
]
// Enum names should be lower_snake_case and end with '_t' or '_e'
typedef
enum
{
Idle
,
Busy
}
camelEnum
;