.jshintrc 781 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "node": true,
  3. "esnext": true,
  4. "bitwise": true,
  5. "camelcase": true,
  6. "curly": true,
  7. "eqeqeq": true,
  8. "immed": true,
  9. "indent": 4,
  10. "latedef": true,
  11. "newcap": true,
  12. "noarg": true,
  13. "quotmark": "single",
  14. "maxcomplexity": 10,
  15. "regexp": true,
  16. "undef": true,
  17. "unused": true,
  18. "strict": true,
  19. "trailing": true,
  20. "smarttabs": true,
  21. "jquery": true,
  22. "white": true,
  23. "globals": {
  24. "_": true,
  25. "$": true,
  26. "angular": true,
  27. "describe": true,
  28. "beforeEach": true,
  29. "afterEach" : true,
  30. "before": true,
  31. "after" : true,
  32. "it": true,
  33. "expect": true,
  34. "inject": true,
  35. "alert": true,
  36. "require": true,
  37. "SRS4": true
  38. }
  39. }