.eslintrc 393 B

1234567891011121314151617
  1. {
  2. "env": {
  3. "node": true,
  4. "es6": true
  5. },
  6. "rules": {
  7. "eqeqeq": ["error", "smart"],
  8. "indent": ["error", 2, { "SwitchCase": 1 }],
  9. "no-constant-condition": "off",
  10. "no-redeclare": "warn",
  11. "no-underscore-dangle": "off",
  12. "no-use-before-define": ["warn","nofunc"],
  13. "quotes": ["error", "single"],
  14. "space-before-blocks": "error",
  15. "strict": "error"
  16. }
  17. }