.jshintrc 348 B

123456789101112131415161718192021
  1. {
  2. "node": true,
  3. "esnext": true,
  4. "bitwise": true,
  5. "camelcase": true,
  6. "eqeqeq": true,
  7. "eqnull": true,
  8. "immed": true,
  9. "indent": 2,
  10. "latedef": "nofunc",
  11. "newcap": true,
  12. "nonew": true,
  13. "noarg": true,
  14. "quotmark": true,
  15. "regexp": true,
  16. "undef": true,
  17. "unused": false,
  18. "trailing": true,
  19. "sub": true,
  20. "maxlen": false
  21. }