Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 1.12 KB

no-array-constructor.md

File metadata and controls

59 lines (39 loc) · 1.12 KB

no-array-constructor

Disallows generic Array constructors.

Rule Details

This rule extends the base eslint/no-array-constructor rule. It adds support for the generically typed Array constructor (new Array<Foo>()).

❌ Incorrect

/*eslint no-array-constructor: "error"*/

Array(0, 1, 2);
new Array(0, 1, 2);

✅ Correct

/*eslint no-array-constructor: "error"*/

Array<number>(0, 1, 2);
new Array<Foo>(x, y, z);

Array(500);
new Array(someOtherArray.length);

How to Use

{
  // note you must disable the base rule as it can report incorrect errors
  "no-array-constructor": "off",
  "@typescript-eslint/no-array-constructor": ["error"]
}

Options

See eslint/no-array-constructor options.

Taken with ❤️ from ESLint core

Attributes

  • Configs:
    • ✅ Recommended
    • 🔒 Strict
  • 🔧 Fixable
  • 💭 Requires type information