.eslintrc 189 B

123456789101112131415
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "max-lines-per-function": 0,
  6. "new-cap": [2, {
  7. "capIsNewExceptions": [
  8. "HasOwnProperty",
  9. "IsCallable",
  10. ],
  11. }],
  12. },
  13. }