Prefer /** */ for multi-line comments

This commit is contained in:
Ross Allen
2012-11-05 09:29:35 -08:00
parent 8eb9087a49
commit c202b0cd18

View File

@@ -1,14 +1,18 @@
// Airbnb JSHint settings for use with SublimeLinter.
//
// Install SublimeLinter at https://github.com/SublimeLinter/SublimeLinter
//
// @see https://github.com/SublimeLinter/SublimeLinter
// @see http://www.jshint.com/docs/
/**
* Airbnb JSHint for settings for use with SublimeLinter.
*
* Install SublimeLinter at https://github.com/SublimeLinter/SublimeLinter
*
* @see https://github.com/SublimeLinter/SublimeLinter
* @see http://www.jshint.com/docs/
*/
{
"jshint_options":
{
// ENVIRONMENTS
// ============
/**
* ENVIRONMENTS
* =================
*/
// Defines globals exposed by modern browsers.
"browser": true,
@@ -16,8 +20,10 @@
// Defines globals exposed by jQuery.
"jquery": true,
// ENFORCING OPTIONS
// =================
/**
* ENFORCING OPTIONS
* =================
*/
// Prohibits the use of == and != in favor of === and !==.
"eqeqeq": true,