You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
441 B
Plaintext
15 lines
441 B
Plaintext
{
|
|
// 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
|
|
}
|