Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 371 Bytes

always-camel-case.md

File metadata and controls

21 lines (13 loc) · 371 Bytes

Always camel case every thing (jlc/always-camel-case)

💼 This rule is enabled in the ✅ recommended config.

Rule Details

This rule aims to enforce camal case in naming things.

Examples of incorrect code for this rule:

let a_b = 1;

Examples of correct code for this rule:

let aB = 1;