Browse Source

ignore: auto-ignore jetbrains .idea file (#2065)

Maia McCormick 6 years ago
parent
commit
e3948f6bae
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pkg/watch/ephemeral.go

+ 1 - 1
pkg/watch/ephemeral.go

@@ -17,7 +17,7 @@ import (
 var ephemeralPathMatcher = initEphemeralPathMatcher()
 
 func initEphemeralPathMatcher() model.PathMatcher {
-	golandPatterns := []string{"**/*___jb_old___", "**/*___jb_tmp___"}
+	golandPatterns := []string{"**/*___jb_old___", "**/*___jb_tmp___", "**/.idea/**"}
 	emacsPatterns := []string{"**/.#*"}
 	vimPatterns := []string{"**/4913", "**/*~", "**/.*.swp", "**/.*.swx"}