Skip to content

Commit 9b9477b

Browse files
committed
feat: Add .config directories to configSearchPaths
Support for `.config` proposal from https://github.com/pi0/config-dir. While walking the tree, check if a directory named `.config` exist. If so, add it to `configSearchPaths` to include when searching for `.golangci.yaml`. Fixes golangci#4554
1 parent 9558299 commit 9b9477b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

pkg/config/loader.go

+7
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,13 @@ func (l *Loader) setupConfigFileSearch() {
138138
for {
139139
configSearchPaths = append(configSearchPaths, curDir)
140140

141+
dotConfig := filepath.Join(curDir, ".config")
142+
143+
info, err := os.Stat(dotConfig)
144+
if err == nil && info.IsDir() {
145+
configSearchPaths = append(configSearchPaths, dotConfig)
146+
}
147+
141148
newCurDir := filepath.Dir(curDir)
142149
if curDir == newCurDir || newCurDir == "" {
143150
break

0 commit comments

Comments
 (0)