.eslintrc 332 B

12345678910111213141516
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "complexity": 0,
  6. "eqeqeq": [2, "allow-null"],
  7. "indent": [2, 2],
  8. "max-depth": [2, 5],
  9. "multiline-comment-style": 0,
  10. "no-continue": [1],
  11. "no-restricted-syntax": [2, "BreakStatement", "DebuggerStatement", "LabeledStatement", "WithStatement"],
  12. "sort-keys": 0,
  13. },
  14. }