Case Style - vonix-id/styleguide GitHub Wiki

The following table shows the various well known case styles in use today:

Style Example Combines words by ...
raw user login count
camelCase userLoginCount ... capitalizing all words following the first word and removing the space.
PascalCase UserLoginCount ... capitalizing all words (even the first word) and removing the space.
snake_case user_login_count ... replacing each space with an underscore (_).
SNAKE_CASE USER_LOGIN_COUNT ... replacing each space with an underscore (_) and all letters are capitalized.
kebab-case user-login-count ... replacing each space with a dash (-).