Development Naming Conventions

From Han Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

There are various naming conventions when it comes to designating names for variables, classes, methods, or properties. There are no hard standard set for calling these conventions, but I've documented some common use cases.


item-detail-component
kebab-case, spinal-case, lisp-case
Item-Detail-Component
Train-Case
itemDetailComponent
camelCase
item_detail_component
snake_case
ItemDetailComponent
PascalCase, CamelCase