Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.22 KB

MissingVariablesDescription.md

File metadata and controls

29 lines (20 loc) · 1.22 KB

All variables declarations must have a description (MissingVariablesDescription)

Description

All module variables and export variables must have comments.

Examples

Incorrect:

Var Context;

Correct:

Var Context; // Detailed description that explains the purpose of the variable 

// Detailed description that explains the purpose of the variable 
Var Context;

Sources