├── .bouncer.yaml ├── .github ├── actions │ └── bootstrap │ │ └── action.yaml ├── dependabot.yml ├── scripts │ ├── coverage.py │ └── go-mod-tidy-check.sh └── workflows │ ├── dependabot-auto-merge.yaml │ ├── oss-project-board-add.yaml │ ├── remove-awaiting-response-label.yaml │ ├── validate-github-actions.yaml │ └── validations.yaml ├── .gitignore ├── .golangci.yaml ├── LICENSE ├── Makefile ├── README.md ├── config.go ├── config_test.go ├── description_provider.go ├── field_describer.go ├── field_describer_test.go ├── field_tag_describer.go ├── finders.go ├── flag_description_provider.go ├── flag_set.go ├── flags.go ├── flags_test.go ├── go.mod ├── go.sum ├── interfaces.go ├── load.go ├── load_test.go ├── summarize.go ├── summarize_test.go ├── test-fixtures ├── all-values │ └── app.yaml ├── basic-profiles │ ├── 1.yaml │ └── 2.yaml ├── config.yaml ├── home-dir │ └── .my-app.yaml ├── multilevel │ ├── 1.yaml │ ├── 2.yaml │ └── 3.yaml ├── wd-config │ └── config.yaml ├── wd-subdir │ └── .my-app │ │ └── config.yaml ├── xdg-dir │ └── my-app │ │ └── config.yaml └── xdg-home │ └── my-app │ └── config.yaml ├── utils.go ├── utils_test.go ├── var.go └── var_test.go /.bouncer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/.bouncer.yaml -------------------------------------------------------------------------------- /.github/actions/bootstrap/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/.github/actions/bootstrap/action.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/scripts/coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/.github/scripts/coverage.py -------------------------------------------------------------------------------- /.github/scripts/go-mod-tidy-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/.github/scripts/go-mod-tidy-check.sh -------------------------------------------------------------------------------- /.github/workflows/dependabot-auto-merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/.github/workflows/dependabot-auto-merge.yaml -------------------------------------------------------------------------------- /.github/workflows/oss-project-board-add.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/.github/workflows/oss-project-board-add.yaml -------------------------------------------------------------------------------- /.github/workflows/remove-awaiting-response-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/.github/workflows/remove-awaiting-response-label.yaml -------------------------------------------------------------------------------- /.github/workflows/validate-github-actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/.github/workflows/validate-github-actions.yaml -------------------------------------------------------------------------------- /.github/workflows/validations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/.github/workflows/validations.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/README.md -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/config.go -------------------------------------------------------------------------------- /config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/config_test.go -------------------------------------------------------------------------------- /description_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/description_provider.go -------------------------------------------------------------------------------- /field_describer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/field_describer.go -------------------------------------------------------------------------------- /field_describer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/field_describer_test.go -------------------------------------------------------------------------------- /field_tag_describer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/field_tag_describer.go -------------------------------------------------------------------------------- /finders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/finders.go -------------------------------------------------------------------------------- /flag_description_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/flag_description_provider.go -------------------------------------------------------------------------------- /flag_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/flag_set.go -------------------------------------------------------------------------------- /flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/flags.go -------------------------------------------------------------------------------- /flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/flags_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/go.sum -------------------------------------------------------------------------------- /interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/interfaces.go -------------------------------------------------------------------------------- /load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/load.go -------------------------------------------------------------------------------- /load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/load_test.go -------------------------------------------------------------------------------- /summarize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/summarize.go -------------------------------------------------------------------------------- /summarize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/summarize_test.go -------------------------------------------------------------------------------- /test-fixtures/all-values/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/test-fixtures/all-values/app.yaml -------------------------------------------------------------------------------- /test-fixtures/basic-profiles/1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/test-fixtures/basic-profiles/1.yaml -------------------------------------------------------------------------------- /test-fixtures/basic-profiles/2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/test-fixtures/basic-profiles/2.yaml -------------------------------------------------------------------------------- /test-fixtures/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/test-fixtures/config.yaml -------------------------------------------------------------------------------- /test-fixtures/home-dir/.my-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/test-fixtures/home-dir/.my-app.yaml -------------------------------------------------------------------------------- /test-fixtures/multilevel/1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/test-fixtures/multilevel/1.yaml -------------------------------------------------------------------------------- /test-fixtures/multilevel/2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/test-fixtures/multilevel/2.yaml -------------------------------------------------------------------------------- /test-fixtures/multilevel/3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/test-fixtures/multilevel/3.yaml -------------------------------------------------------------------------------- /test-fixtures/wd-config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/test-fixtures/wd-config/config.yaml -------------------------------------------------------------------------------- /test-fixtures/wd-subdir/.my-app/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/test-fixtures/wd-subdir/.my-app/config.yaml -------------------------------------------------------------------------------- /test-fixtures/xdg-dir/my-app/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/test-fixtures/xdg-dir/my-app/config.yaml -------------------------------------------------------------------------------- /test-fixtures/xdg-home/my-app/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/test-fixtures/xdg-home/my-app/config.yaml -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/utils.go -------------------------------------------------------------------------------- /utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/utils_test.go -------------------------------------------------------------------------------- /var.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/var.go -------------------------------------------------------------------------------- /var_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anchore/fangs/HEAD/var_test.go --------------------------------------------------------------------------------