.eslintrc 224 B

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