From dc74e17cb877bf76ef86ac0307a3098af5b5988f Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Mon, 7 Sep 2020 19:28:30 -0400 Subject: [PATCH] Add missing comma --- ui/ignore_general.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/ignore_general.go b/ui/ignore_general.go index 652d3c5..7f1da74 100644 --- a/ui/ignore_general.go +++ b/ui/ignore_general.go @@ -5,7 +5,7 @@ package ui func ignorePatterns(m model) []string { return []string{ m.cfg.Gopath, - "node_modules" + "node_modules", ".*", } }