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 PlaygroundArray<number>(0, 1, 2);
new Array<Foo>(x, y, z);
Array(500);
new Array(someOtherArray.length);
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 内核