.eslintrc 192 B

1234567891011121314
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "globals": {
  5. "BigInt": true,
  6. },
  7. "rules": {
  8. "new-cap": [2, { "capIsNewExceptions": ["BigInt"] }],
  9. "operator-linebreak": [2, "before"],
  10. },
  11. }