indent_case option no longer exists ;_;

This commit is contained in:
Daniel Stockman 2012-12-05 11:39:41 -08:00
parent 794797397e
commit c5a91f3d1c
3 changed files with 0 additions and 8 deletions

View File

@ -79,7 +79,6 @@ These are the command-line flags for both Python and JS scripts:
-b, --brace-style Brace style [collapse|expand|end-expand|expand-strict] [default: "collapse"]
-B, --break-chained-methods Break chained method calls across subsequent lines
-k, --keep-array-indentation Preserve array indentation
-a, --indent-case Indent case inside switch
-x, --unescape-strings Decode printable characters encoded in xNN notation
These correspond to underscored option keys for both library interfaces:
@ -98,7 +97,6 @@ These correspond to underscored option keys for both library interfaces:
"space_before_conditional": true,
"break_chained_methods": false,
"eval_code": false,
"indent_case": false,
"unescape_strings": false
}

View File

@ -12,6 +12,5 @@
"space_before_conditional": true,
"break_chained_methods": false,
"eval_code": false,
"indent_case": false,
"unescape_strings": false
}

View File

@ -70,11 +70,6 @@
"type": "boolean",
"description": "Preserve array indentation"
},
"a": {
"alias": "indent-case",
"type": "boolean",
"description": "Indent case inside switch"
},
"x": {
"alias": "unescape-strings",
"type": "boolean",