.eslintrc 572 B

123456789101112131415161718192021222324
  1. {
  2. "env": {
  3. "node": true
  4. },
  5. "rules": {
  6. "brace-style": [2, "1tbs"],
  7. "default-case": 2,
  8. "func-style": [2, "declaration"],
  9. "guard-for-in": 2,
  10. "no-floating-decimal": 2,
  11. "no-nested-ternary": 2,
  12. "radix": 2,
  13. "space-unary-word-ops": 2,
  14. "space-after-keywords": [2, "always"],
  15. "valid-jsdoc": [2, {
  16. "prefer": {
  17. "return": "returns"
  18. }
  19. }],
  20. "quotes": [1, "single", "allow-avoiding-escaped-quotes"],
  21. "wrap-iife": 2
  22. }
  23. }