Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 454 Bytes

camelcase.md

File metadata and controls

11 lines (6 loc) · 454 Bytes

Pattern: Missing use of CamelCase

Issue: -

Description

When it comes to naming variables, style guides generally fall into one of two camps: camelcase (variableName) and underscores (variable_name). This rule focuses on using the camelcase approach. If your style guide calls for camelCasing your variable names, then this rule is for you!

Further Reading