.eslintrc 209 B

1234567891011121314
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "complexity": 0,
  6. "eqeqeq": [2, "allow-null"],
  7. "func-name-matching": 0,
  8. "id-length": 0,
  9. "max-lines-per-function": 0,
  10. "max-statements": 0,
  11. },
  12. }