File tree 1 file changed +8
-5
lines changed
1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change 7
7
* 3. Paste the contents of this file into your settings file
8
8
* 4. Save the settings file
9
9
*
10
- * @version 0.2 .0
10
+ * @version 0.3 .0
11
11
* @see https://github.com/SublimeLinter/SublimeLinter
12
12
* @see http://www.jshint.com/docs/
13
13
*/
37
37
// with underscores.
38
38
"camelcase" : true ,
39
39
40
- // Prohibit the use of == and != in favor of === and !==.
40
+ // Prohibit use of == and != in favor of === and !==.
41
41
"eqeqeq" : true ,
42
42
43
43
// Suppress warnings about == null comparisons.
44
44
"eqnull" : true ,
45
45
46
- // Enforce a tab width of 2 spaces.
46
+ // Enforce tab width of 2 spaces.
47
47
"indent" : 2 ,
48
48
49
- // Prohibit the use of a variable before it was defined.
49
+ // Prohibit use of a variable before it is defined.
50
50
"latedef" : true ,
51
51
52
52
// Require capitalized names for constructor functions.
53
53
"newcap" : true ,
54
54
55
+ // Enforce use of single quotation marks for strings.
56
+ "quotmark" : " single" ,
57
+
55
58
// Prohibit trailing whitespace.
56
59
"trailing" : true ,
57
60
58
- // Prohibit the use of explicitly undeclared variables.
61
+ // Prohibit use of explicitly undeclared variables.
59
62
"undef" : true ,
60
63
61
64
// Warn when variables are defined but never used.
You can’t perform that action at this time.
0 commit comments