3.0.0 β’ Published 7 months ago
@putout/plugin-remove-useless-array-constructor v3.0.0
@putout/plugin-remove-useless-array-constructor 
TypeScript code must not use the
Array()constructor, with or without new. It has confusing and contradictory usage.
πPutout plugin removes useless Array constructor. It has a different meaning for one, and couple arguments:
const a = new Array(2); // [undefined, undefined]
const b = new Array(2, 3); // [2, 3];Install
npm i @putout/plugin-remove-useless-array-constructor -DRule
{
"rules": {
"remove-useless-array-constructor": "on"
}
}β Example of incorrect code
const a = Array(1, 2, 3);β Example of correct code
const a = [1, 2, 3];Comparison
| Linter | Rule | Fix |
|---|---|---|
| π Putout | remove-useless-array-constructor | β |
| β£ ESLint | no-array-constructor | β |
License
MIT