You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.eslintrc 247B

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