mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
* improve struct and field comments and incorporate into json schema Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * address review feedback Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> --------- Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com>
11 lines
408 B
Go
11 lines
408 B
Go
package file
|
|
|
|
const (
|
|
NoFilesSelection Selection = "none" // no files are selected
|
|
FilesOwnedByPackageSelection Selection = "owned-by-package" // only files owned by packages are selected
|
|
AllFilesSelection Selection = "all" // all files are selected
|
|
)
|
|
|
|
// Selection defines which files should be included during cataloging operations.
|
|
type Selection string
|