# es/no-typed-arrays
disallow ES2015 typed arrays
- ✅ The following configurations enable this rule:
plugin:es/no-new-in-es2015,plugin:es/restrict-to-es3, andplugin:es/restrict-to-es5
This rule reports ES2015 typed arrays as errors.
Int8ArrayUint8ArrayUint8ClampedArrayInt16ArrayUint16ArrayInt32ArrayUint32ArrayFloat32ArrayFloat64ArrayDataView
# Examples
⛔ Examples of incorrect code for this rule:
/*eslint es/no-typed-arrays: error */
let numbers = new Int32Array(10)