.eslintrc 278 B

12345678910111213
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "complexity": [2, 13],
  6. "id-length": [2, { "min": 1, "max": 24, "properties": "never" }],
  7. "max-statements": [2, 20],
  8. "new-cap": [2, { "capIsNewExceptions": ["GetMethod"] }],
  9. "no-extra-parens": [2, "functions"]
  10. }
  11. }