.eslintrc 507 B

123456789101112131415161718192021
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "complexity": 0,
  6. "consistent-return": 1,
  7. "func-style": [2, "declaration"],
  8. "max-depth": 1,
  9. "max-lines-per-function": 0,
  10. "max-statements": 0,
  11. "multiline-comment-style": 0,
  12. "no-control-regex": 1,
  13. "no-misleading-character-class": 1,
  14. "no-restricted-syntax": 1,
  15. "no-throw-literal": 0,
  16. "no-unmodified-loop-condition": 0,
  17. "sort-keys": 0,
  18. },
  19. }