From b0f3c880d59bcf234f099f6a5a9e31577d9a8271 Mon Sep 17 00:00:00 2001 From: zjc_he Date: Tue, 7 May 2024 15:38:05 +0800 Subject: [PATCH] fix(internal/parsers/clang_tidy/parser.go): Fix typo in default root dir --- internal/parsers/clang_tidy/parser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/parsers/clang_tidy/parser.go b/internal/parsers/clang_tidy/parser.go index 2a22154..58a8a7d 100644 --- a/internal/parsers/clang_tidy/parser.go +++ b/internal/parsers/clang_tidy/parser.go @@ -13,7 +13,7 @@ type Match struct { type Conf struct { Score int `default:"100"` - RootDir string `default:"\\w"` + RootDir string `default:"/w"` Matches []Match }