Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 516 Bytes

non_constant_identifier_names.md

File metadata and controls

24 lines (16 loc) · 516 Bytes

Pattern: Invalid non-constant identifier name

Issue: -

Description

Class members, top-level definitions, variables, parameters, named parameters and named constructors should capitalize the first letter of each word except the first word, and use no separators.

Example of correct code:

var item;

HttpRequest httpRequest;

align(clearItems) {
 // ...
}

Further Reading