Skip to content
Snippets Groups Projects
.jshintrc 441 B
Newer Older
  • Learn to ignore specific revisions
  • Laura Cappelli's avatar
    Laura Cappelli committed
    {
      // Details: https://github.com/victorporof/Sublime-JSHint#using-your-own-jshintrc-options
      // Example: https://github.com/jshint/jshint/blob/master/examples/.jshintrc
      // Documentation: http://www.jshint.com/docs/
      "browser": true,
      "esnext": true,
      "globals": { $: false, jQuery: false, "console": false},
      "globalstrict": true,
      "quotmark": "single",
      "smarttabs": true,
      "trailing": true,
      "undef": true,
      "unused": true
    }