You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.jshintrc 684B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "bitwise": true,
  3. "camelcase": true,
  4. "curly": false,
  5. "eqeqeq": true,
  6. "es3": false,
  7. "forin": true,
  8. "immed": false,
  9. "indent": false,
  10. "latedef": "nofunc",
  11. "newcap": false,
  12. "noarg": true,
  13. "noempty": true,
  14. "nonew": false,
  15. "plusplus": false,
  16. "quotmark": true,
  17. "undef": true,
  18. "unused": "vars",
  19. "strict": false,
  20. "trailing": true,
  21. "maxparams": 5,
  22. "maxdepth": false,
  23. "maxstatements": false,
  24. "maxcomplexity": false,
  25. "maxlen": 100,
  26. "asi": true,
  27. "expr": true,
  28. "globalstrict": true,
  29. "smarttabs": true,
  30. "sub": true,
  31. "node": true,
  32. "globals": {
  33. "describe": false,
  34. "it": false,
  35. "before": false,
  36. "beforeEach": false,
  37. "after": false,
  38. "afterEach": false
  39. }
  40. }