basic-request
Version:
Basic request to a URL, send to a function(error, body), following redirects
16 lines (15 loc) • 430 B
Plain Text
{
// 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/
"node": true,
"esnext": true,
"globals": {},
"globalstrict": true,
"quotmark": true,
"smarttabs": true,
"trailing": true,
"undef": true,
"asi": true, // Do not require semicolons
"unused": true
}