.eslintrc 231 B

123456789101112131415161718
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "id-length": 0,
  6. "max-statements": [2, 20],
  7. "new-cap": [2, {
  8. "capIsNewExceptions": [
  9. "GetIntrinsic",
  10. "IsCallable",
  11. "ToObject",
  12. "Type",
  13. ],
  14. }],
  15. },
  16. }