Small fixes
A selection of 80 fixes from 174 pull requests.
1.BigInt precision
The autofix converted 9007199254740993n through a Number, rounding it to 9007199254740992n. Quoting the digits preserves the original value.
11const fixedSource = `BigInt(${node.value})`const fixedSource = `BigInt("${node.value}")`