.eslintrc 319 B

12345678910111213141516171819
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "env": {
  5. "es6": true
  6. },
  7. "rules": {
  8. "id-length": [2, { "min": 1, "max": 30 }],
  9. "max-lines": [2, 100],
  10. "max-lines-per-function": [2, 70],
  11. "max-statements": [2, 18],
  12. "multiline-comment-style": 0,
  13. "no-magic-numbers": 0,
  14. "operator-linebreak": [2, "before"]
  15. }
  16. }