diff options
Diffstat (limited to 'lib')
| -rwxr-xr-x | lib/jsl/jsl.default.conf | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lib/jsl/jsl.default.conf b/lib/jsl/jsl.default.conf index f494a35c..fe4d0ea4 100755 --- a/lib/jsl/jsl.default.conf +++ b/lib/jsl/jsl.default.conf @@ -23,7 +23,7 @@  -missing_break                # missing break statement  +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 !==) -+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)  +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 @@ -41,7 +41,7 @@  +useless_assign               # useless assignment  +ambiguous_nested_stmt        # block statements containing block statements should use curly braces to resolve ambiguity  +ambiguous_else_stmt          # the else statement could be matched with one of multiple if statements (use curly braces to indicate intent) -+missing_default_case         # missing default case in switch statement +-missing_default_case         # missing default case in switch statement  +duplicate_case_in_switch     # duplicate case in switch statements  +default_not_at_end           # the default case is not at the end of the switch statement  +legacy_cc_not_understood     # couldn't understand control comment using /*@keyword@*/ syntax | 
