Skip to main content

no-array-constructor

Disallow generic Array constructors.

ESLint 配置 中扩展"plugin:@typescript-eslint/recommended" 可启用此规则。

🔧

此规则报告的一些问题可通过 --fix ESLint 命令行选项自动修复


此规则扩展了基本 eslint/no-array-constructor 规则。 它添加了对通用类型 Array 构造函数 (new Array<Foo>()) 的支持。

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

Array(0, 1, 2);
new Array(0, 1, 2);
Open in Playground

如何使用

.eslintrc.cjs
module.exports = {
"rules": {
// Note: you must disable the base rule as it can report incorrect errors
"no-array-constructor": "off",
"@typescript-eslint/no-array-constructor": "error"
}
};
在线运行试试这个规则 ↗

选项

参见 eslint/no-array-constructor 选项

资源

摘自 ❤️ ESLint 内核