Sign in
foss-fpga-tools
/
third_party
/
verible
/
07095f61a411b16de8b60e28d8dde49151bc63cd
/
.
/
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
;