.eslintrc 375 B

123456789101112131415
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "func-names": 0,
  6. "id-length": [2, { "min": 1, "max": 26 }],
  7. "max-statements": [2, 14],
  8. "max-lines-per-function": 0,
  9. "new-cap": [2, { capIsNewExceptions: ["GetIntrinsic", "ToObject", "ToInteger", "ToLength", "SameValueZero", "RequireObjectCoercible"] }],
  10. "no-magic-numbers": [0],
  11. "no-useless-call": [1]
  12. }
  13. }