.eslintrc 463 B

123456789101112131415161718192021222324
  1. {
  2. "env": {
  3. "node": true
  4. },
  5. "rules": {
  6. "strict": 0,
  7. "camelcase": 0,
  8. "curly": 0,
  9. "indent": [2, "tab", { "SwitchCase": 1 }],
  10. "eol-last": 1,
  11. "no-shadow": 0,
  12. "no-redeclare": 2,
  13. "no-extra-bind": 1,
  14. "no-empty": 0,
  15. "no-process-exit": 1,
  16. "no-underscore-dangle": 0,
  17. "no-use-before-define": 0,
  18. "no-unused-vars": 0,
  19. "consistent-return": 0,
  20. "no-inner-declarations": 1,
  21. "no-loop-func": 1,
  22. "space-before-function-paren": [2, "never"]
  23. }
  24. }