.eslintrc 318 B

1234567891011121314151617181920
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "func-name-matching": 0,
  6. "id-length": [2, { "min": 1, "max": 24, "properties": "never" }],
  7. "new-cap": [2, { "capIsNewExceptions": ["GetMethod"] }]
  8. },
  9. "overrides": [
  10. {
  11. "files": "test/**",
  12. "rules": {
  13. "max-lines-per-function": 0,
  14. },
  15. }
  16. ],
  17. }