UNPKG

eslint-plugin-unicorn

Version:
31 lines (28 loc) 402 B
import typedArray from '../shared/typed-array.js'; export const enforceNew = [ 'Object', 'Array', 'ArrayBuffer', 'DataView', 'Date', 'Error', 'Function', 'Map', 'WeakMap', 'Set', 'WeakSet', 'Promise', 'RegExp', 'SharedArrayBuffer', 'Proxy', 'WeakRef', 'FinalizationRegistry', ...typedArray, ]; export const disallowNew = [ 'BigInt', 'Boolean', 'Number', 'String', 'Symbol', ];