.eslintrc 148 B

12345678910111213
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "globals": {
  5. "globalThis": false
  6. },
  7. "rules": {
  8. "max-statements-per-line": [2, { "max": 2 }]
  9. },
  10. }