.eslintrc 156 B

1234567891011
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "id-length": [2, { "min": 1, "max": 35 }],
  6. "max-params": [2, 4],
  7. "max-statements": [2, 13]
  8. }
  9. }