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

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