-
Notifications
You must be signed in to change notification settings - Fork 141
Closed
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed
Description
I see excluded_paths
is supported, but it would be fantastic to be able to exclude filenames (especially with wildcard support for partial matches) using something like excluded_filenames
.
Perhaps this logic could be squeezed in here:
Lines 27 to 29 in 4a6d3b8
const excludedPathsString = core.getInput("excluded_paths") || "node_modules,bower_components,dist,out,build,eject,.next,.netlify,.yarn,.git,.vscode,package-lock.json,yarn.lock" | |
const excludedPaths = excludedPathsString.split(",").map(str => str.trim()) | |
const data = await processDir(`./`, excludedPaths); |
An example use case is excluded_filenames=*.Designer.cs,*.resx
to exclude automatically-generated .NET files from large Windows Forms applications.
PS: consider adding a CONTRIBUTING.md to this repo
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed