.eslintrc 192 B

123456789101112
  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. "no-magic-numbers": 0,
  9. }
  10. }