.jshintrc 428 B

1234567891011121314151617181920212223
  1. {
  2. "expr": true,
  3. "nonbsp": true,
  4. "trailing": true,
  5. "indent": 4,
  6. "quotmark": "double",
  7. "eqeqeq": true,
  8. "curly": true,
  9. "forin": true,
  10. "immed": true,
  11. "newcap": true,
  12. "noempty": true,
  13. "nonew": true,
  14. "undef": true,
  15. "strict": true,
  16. "globalstrict": true,
  17. "browser": true,
  18. "globals": {
  19. "require": false,
  20. "module": false,
  21. "exports": true
  22. }
  23. }