.eslintrc 270 B

1234567891011121314151617
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "id-length": [2, { "min": 1, "max": 30 }],
  6. "max-lines-per-function": 0,
  7. "multiline-comment-style": 0,
  8. "new-cap": [2, {
  9. "capIsNewExceptions": [
  10. "GetIntrinsic",
  11. ],
  12. }],
  13. "no-magic-numbers": 0,
  14. }
  15. }