From d1aa61840a7554c925bea730ee813da5dd0a7080 Mon Sep 17 00:00:00 2001 From: Filipe Silva Date: Wed, 23 Sep 2015 01:21:59 +0100 Subject: [PATCH] Default prettydiff comments to indent Close #561 --- src/beautifiers/prettydiff.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/beautifiers/prettydiff.coffee b/src/beautifiers/prettydiff.coffee index b0b44e0..c0f1769 100644 --- a/src/beautifiers/prettydiff.coffee +++ b/src/beautifiers/prettydiff.coffee @@ -16,8 +16,8 @@ module.exports = class PrettyDiff extends Beautifier ] cssinsertlines: "newline_between_rules" comments: ["indent_comments", (indent_comments) -> - if (indent_comments is true) then \ - "indent" else "noindent" + if (indent_comments is false) then \ + "noindent" else "indent" ] force: "force_indentation" quoteConvert: "convert_quotes"