Skip to content

Files

Latest commit

 

History

History
13 lines (7 loc) · 343 Bytes

no-null-keyword.md

File metadata and controls

13 lines (7 loc) · 343 Bytes

Pattern: Use of null

Issue: -

Description

Disallows use of the null keyword literal.

Rationale: Instead of having the dual concepts of null and undefined in a codebase, this rule ensures that only undefined is used.

Further Reading