Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 372 Bytes

no-literal-call.md

File metadata and controls

23 lines (15 loc) · 372 Bytes

Disallow a call of a literal (no-literal-call)

A call of a literal is a valid syntax, but it would cause a runtime error.

Rule Details

Examples of incorrect code for this rule:

/*eslint no-literal-call: "error"*/

123()
"hello"()

Examples of correct code for this rule:

/*eslint no-literal-call: "error"*/

foo()
;(function () {})()