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 602B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "esversion": 11,
  3. "camelcase": true,
  4. "eqeqeq": true,
  5. "immed": true,
  6. "latedef": false,
  7. "noarg": true,
  8. "nonbsp": true,
  9. "undef": true,
  10. "unused": true,
  11. "trailing": true,
  12. "maxparams": 5,
  13. "curly": true,
  14. "jquery": true,
  15. "indent": 4,
  16. "browser": true,
  17. "laxbreak": true,
  18. "asi": true,
  19. "globals": {
  20. "console": true,
  21. "it": true,
  22. "xit": true,
  23. "expect": true,
  24. "describe": true,
  25. "beforeEach": true,
  26. "afterEach": true,
  27. "sinon": true,
  28. "fakeServer": true,
  29. "_": true,
  30. "OC": true,
  31. "OCA": true,
  32. "OCP": true,
  33. "t": true,
  34. "n": true,
  35. "escapeHTML": true,
  36. "Promise": true
  37. }
  38. }