.jshintrc 254 B

123456789101112131415161718192021
  1. {
  2. "esnext": true,
  3. "immed": true,
  4. "latedef": "nofunc",
  5. "noarg": true,
  6. "nonbsp": true,
  7. "undef": true,
  8. "unused": true,
  9. "strict": true,
  10. "globalstrict": true,
  11. "globals": {
  12. "CKEDITOR": false,
  13. "bender": false
  14. },
  15. "predef": [
  16. "-Promise"
  17. ]
  18. }