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