mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
Fixing jsl.conf to lint cleanly again (don't mind our void 0s)
This commit is contained in:
parent
76685e6e51
commit
8d30feaf88
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@
|
||||||
-missing_break_for_last_case # missing break statement for last case in switch
|
-missing_break_for_last_case # missing break statement for last case in switch
|
||||||
-comparison_type_conv # comparisons against null, 0, true, false, or an empty string allowing implicit type conversion (use === or !==)
|
-comparison_type_conv # comparisons against null, 0, true, false, or an empty string allowing implicit type conversion (use === or !==)
|
||||||
-inc_dec_within_stmt # increment (++) and decrement (--) operators used as part of greater statement
|
-inc_dec_within_stmt # increment (++) and decrement (--) operators used as part of greater statement
|
||||||
+useless_void # use of the void type may be unnecessary (void is always undefined)
|
-useless_void # use of the void type may be unnecessary (void is always undefined)
|
||||||
+multiple_plus_minus # unknown order of operations for successive plus (e.g. x+++y) or minus (e.g. x---y) signs
|
+multiple_plus_minus # unknown order of operations for successive plus (e.g. x+++y) or minus (e.g. x---y) signs
|
||||||
+use_of_label # use of label
|
+use_of_label # use of label
|
||||||
-block_without_braces # block statement without curly braces
|
-block_without_braces # block statement without curly braces
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue