.jshintrc 441 B

1234567891011121314
  1. {
  2. // Details: https://github.com/victorporof/Sublime-JSHint#using-your-own-jshintrc-options
  3. // Example: https://github.com/jshint/jshint/blob/master/examples/.jshintrc
  4. // Documentation: http://www.jshint.com/docs/
  5. "browser": true,
  6. "esnext": true,
  7. "globals": { $: false, jQuery: false, "console": false},
  8. "globalstrict": true,
  9. "quotmark": "single",
  10. "smarttabs": true,
  11. "trailing": true,
  12. "undef": true,
  13. "unused": true
  14. }