.jshintrc 354 B

1234567891011121314151617181920
  1. {
  2. "node": true,
  3. "esnext": true,
  4. "bitwise": false,
  5. "curly": false,
  6. "eqeqeq": true,
  7. "eqnull": true,
  8. "immed": true,
  9. "latedef": false,
  10. "newcap": true,
  11. "noarg": true,
  12. "undef": true,
  13. "strict": true,
  14. "trailing": true,
  15. "smarttabs": true,
  16. "indent": 2,
  17. "quotmark": "single",
  18. "scripturl": true,
  19. "globals": [ "describe", "it" ]
  20. }