Skip to content

Commit c304f32

Browse files
authored
added .pioenvs and .piolibdeps to ignore list
1 parent d3bf497 commit c304f32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: utils/utils.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ func FilterFiles() filterFiles {
152152
}
153153
}
154154

155-
var SOURCE_CONTROL_FOLDERS = map[string]bool{"CVS": true, "RCS": true, ".git": true, ".github": true, ".svn": true, ".hg": true, ".bzr": true, ".vscode": true, ".settings": true}
155+
var SOURCE_CONTROL_FOLDERS = map[string]bool{"CVS": true, "RCS": true, ".git": true, ".github": true, ".svn": true, ".hg": true, ".bzr": true, ".vscode": true, ".settings": true, ".pioenvs": true, ".piolibdeps": true}
156156

157157
func IsSCCSOrHiddenFile(file os.FileInfo) bool {
158158
return IsSCCSFile(file) || IsHiddenFile(file)

0 commit comments

Comments
 (0)