Skip to content

Commit c202b0c

Browse files
committed
Prefer /** */ for multi-line comments
1 parent 8eb9087 commit c202b0c

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

SublimeLinter.sublime-settings

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,29 @@
1-
// Airbnb JSHint settings for use with SublimeLinter.
2-
//
3-
// Install SublimeLinter at https://github.com/SublimeLinter/SublimeLinter
4-
//
5-
// @see https://github.com/SublimeLinter/SublimeLinter
6-
// @see http://www.jshint.com/docs/
1+
/**
2+
* Airbnb JSHint for settings for use with SublimeLinter.
3+
*
4+
* Install SublimeLinter at https://github.com/SublimeLinter/SublimeLinter
5+
*
6+
* @see https://github.com/SublimeLinter/SublimeLinter
7+
* @see http://www.jshint.com/docs/
8+
*/
79
{
810
"jshint_options":
911
{
10-
// ENVIRONMENTS
11-
// ============
12+
/**
13+
* ENVIRONMENTS
14+
* =================
15+
*/
1216

1317
// Defines globals exposed by modern browsers.
1418
"browser": true,
1519

1620
// Defines globals exposed by jQuery.
1721
"jquery": true,
1822

19-
// ENFORCING OPTIONS
20-
// =================
23+
/**
24+
* ENFORCING OPTIONS
25+
* =================
26+
*/
2127

2228
// Prohibits the use of == and != in favor of === and !==.
2329
"eqeqeq": true,

0 commit comments

Comments
 (0)