Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 416 Bytes

use-named-parameter.md

File metadata and controls

13 lines (7 loc) · 416 Bytes

Pattern: Missing use of named parameter

Issue: -

Description

Do not reference the arguments object by numerical index; instead, use a named parameter.

This rule is similar to JSLint's Use a named parameter rule.

Further Reading