Skip to content

Latest commit

 

History

History
26 lines (14 loc) · 631 Bytes

File metadata and controls

26 lines (14 loc) · 631 Bytes

NamingConvention

Properties

Name Type Description Notes
_case CaseEnum The casing convention to enforce for new flag keys in this project [optional]
prefix String The prefix to enforce for new flag keys in this project [optional]

Enum: CaseEnum

Name Value
CAMEL_CASE "camelCase"
UPPER_CAMEL_CASE "upperCamelCase"
SNAKE_CASE "snakeCase"
KEBAB_CASE "kebabCase"
CONSTANT_CASE "constantCase"