From 073fb393167e337e32c156f2a45c3ff736da10d6 Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Thu, 10 Oct 2024 20:24:05 -0400 Subject: [PATCH] feat(parser/diff): ignore whitespace by default --- internal/parser/diff/parser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/parser/diff/parser.go b/internal/parser/diff/parser.go index 3c86b3c..7faf1c2 100644 --- a/internal/parser/diff/parser.go +++ b/internal/parser/diff/parser.go @@ -27,7 +27,7 @@ type Conf struct { Score int FileName string AnswerPath string - IgnoreWhitespace bool + IgnoreWhitespace bool `default:"true"` AlwaysHide bool } }