.jshintrc 402 B

123456789101112131415161718192021222324
  1. {
  2. "esnext": true,
  3. "-W030": true,
  4. "-W053": true,
  5. "-W084": true,
  6. "-W055": true,
  7. "-W069": true,
  8. "-W097": true,
  9. "-W087": true,
  10. "undef": true,
  11. "unused": true,
  12. "laxbreak": true,
  13. "node": true,
  14. "browser": true,
  15. "predef": [
  16. "window",
  17. "Promise",
  18. "define",
  19. "console",
  20. "describe",
  21. "after",
  22. "it"
  23. ]
  24. }