mirror of
https://github.com/airbnb/javascript.git
synced 2026-04-25 03:00:19 -04:00
Prefer /** */ for multi-line comments
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user