.jshintrc 374 B

123456789101112131415161718192021
  1. {
  2. "nonbsp": true,
  3. "trailing": true,
  4. "indent": 4,
  5. "quotmark": "single",
  6. "eqeqeq": true,
  7. "curly": true,
  8. "forin": true,
  9. "latedef": true,
  10. "immed": true,
  11. "newcap": true,
  12. "noempty": true,
  13. "nonew": true,
  14. "undef": true,
  15. "unused": true,
  16. "strict": true,
  17. "browser": true,
  18. "globals": {
  19. "jQuery": false
  20. }
  21. }