.eslintrc 232 B

1234567891011121314151617
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "func-name-matching": 0,
  6. "id-length": 0,
  7. "new-cap": [2, {
  8. "capIsNewExceptions": [
  9. "GetIntrinsic",
  10. ],
  11. }],
  12. "no-extra-parens": 0,
  13. "no-magic-numbers": 0,
  14. },
  15. }