Metadata-Version: 1.2
Name: config-files-validator
Version: 1.0.0
Summary: A validator for json and yaml files
Home-page: https://github.com/feffe/config-files-validator
Author: Fredrik Westermark
Author-email: feffe.westermark@gmail.com
License: MIT
Description: # config-files-validator
        A command line tool to validate configuration language files. So far json and yaml are supported. The tool validates
        the files by trying load them one by one. Result can be converted to xunit xml report.
        
        ## Example of usage with json files
        ```
        validate-json-files example1.json example2.json
        ```
        
        ## Example of usage with yaml files
        ```
        validate-yaml-files example1.yaml example2.yaml
        ```
        
        ## Example of xunit xml report
        This will generate an xunit xml report file named testreport.xml
        ```
        validate-yaml-files example1.yaml example2.yaml --xunit
        ```
        This will generate an xunit xml report file named myxunit.xml
        ```
        validate-yaml-files example1.yaml example2.yaml --xunit --xunit-output-file=myxunit.xml
        ```
        
        ## Requirements
        The tool requires version 3.6 or higher of Python.
Keywords: json yaml configuration config validator validation
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
