Document using the config-file-validator programatically
Description
The config-file-validator can be included and used programmatically within other go projects but there is currently no documentation for this. This can be useful for projects that want to integrate the config file validation into existing go-based CI tooling
Hi @kehoecj , Can you please shed some light on what you mean by using config-file-validator programatically within other go projects ?
The only way I can think of is to use it in a Makefile and generate a rule in makefile for this.
.PHONY: config-file-validator config-file-validator: @go install github.com/Boeing/config-file-validator/cmd/[email protected] @validator --file-types
@divyansh-2001 Still interested in working this?
Hi @kehoecj , Can you please shed some light on what you mean by using config-file-validator programatically within other go projects ?
The only way I can think of is to use it in a Makefile and generate a rule in makefile for this.
.PHONY: config-file-validator config-file-validator: @go install github.com/Boeing/config-file-validator/cmd/[email protected] @validator --file-types
The intent is to document how to import and import and use the config-file-validator functionality in an existing go program.