console-mirroring
Version:
Real-time console mirroring on a web page.
20 lines (17 loc) • 651 B
Plain Text
{
// The plugin looks for a .jshintrc file in the same directory as the source
// file you're prettifying (or any directory above if it doesn't exist, or in
// your home folder if everything else fails) and uses those options along
// the default ones.
// 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/options/
"browser": true,
"esnext": true,
"globals": {"io": true},
"globalstrict": false,
"quotmark": true,
"undef": true,
"unused": true,
"devel": true
}