.eslintrc 201 B

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