Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions internal/params/filters.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,6 @@ var BaseIncludeFilters = []string{
"requirement.txt",
"requirement*.txt",
"composer.lock",
"Dockerfile*",
"dock*",
"*.dart",
"*.plist",
"go.mod",
Expand All @@ -149,6 +147,9 @@ var BaseIncludeFilters = []string{
"*.cts",
"*.html",
"*.xhtml",
"*[dD]ocker-compose*.[yY][mM][lL]",
"*[dD]ocker-compose*.[yY][aA][mM][lL]",
"*[dD]ockerfile*",
}

var BaseExcludeFilters = []string{
Expand All @@ -168,6 +169,8 @@ var KicsBaseFilters = []string{
"Dockerfile",
".proto",
".dockerfile",
"docker-compose",
"Docker-compose",
}

var DisabledExclusions = map[string]bool{
Expand Down
Loading