gofeatureflag/go-feature-flag-lint
GO Feature Flag linter to validate your flag configuration.
2.2K
WarningThe linter command has been deprecated in favor of the GO Feature Flag Command Line. Check the documentation for the [GO Feature Flag Command Line](http://gofeatureflag.org/docs/tooling/linter) for more information.
The lint command lint tool validates that a flags file can be parsed by GO Feature Flag.
docker run \
-v $(pwd)/your/configuration_folder:/config \
gofeatureflag/go-feature-flag-lint:latest \
--input-file=/config/my-go-feature-flag-config.yaml \
--input-format=yaml
The command line has 2 parameters:
param | description |
---|---|
--input-file | (mandatory) The location of your configuration file. |
--input-format | (mandatory) The format of your current configuration file. Available formats are yaml , json , toml . |
docker pull gofeatureflag/go-feature-flag-lint