.eslintrc 275 B

123456789101112
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "id-length": [2, { "min": 1, "max": 25, "properties": "never" }],
  6. "new-cap": [2, { "capIsNewExceptions": ["ToLength", "ToString", "RequireObjectCoercible"] }],
  7. "no-invalid-this": [1],
  8. "no-magic-numbers": [0]
  9. }
  10. }