.jshintrc 458 B

12345678910111213141516171819202122232425262728
  1. {
  2. "shadow": "inner",
  3. "indent": 1,
  4. "camelcase": false,
  5. "eqeqeq": true,
  6. "eqnull": true,
  7. "freeze": true,
  8. "funcscope": true,
  9. "newcap": true,
  10. "noarg": true,
  11. "noempty": true,
  12. "nonbsp": true,
  13. "unused": "vars",
  14. "undef": true,
  15. "scripturl": true,
  16. "loopfunc": true,
  17. "strict": "implied",
  18. "validthis": true,
  19. "esnext": true,
  20. "globals": {},
  21. "browser": true,
  22. "devel": true,
  23. "mocha": true,
  24. "node": true,
  25. "jquery": true
  26. }