.jshintrc 297 B

123456789101112131415161718
  1. {
  2. "node" : true,
  3. "browser" : true,
  4. "esnext": true,
  5. "curly": true,
  6. "latedef": "nofunc",
  7. "eqeqeq": true,
  8. "immed": true,
  9. "newcap": true,
  10. "noarg": true,
  11. "sub": true,
  12. "undef": "nofunc",
  13. "strict": true,
  14. "white": true,
  15. "indent": 2,
  16. "trailing": true,
  17. "quotmark": "single"
  18. }