Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 632 Bytes

jsonlint.md

File metadata and controls

27 lines (18 loc) · 632 Bytes

JsonLint

The JsonLint task will lint all your json files. It lives under the jsonlint namespace and has following configurable parameters:

# grumphp.yml
grumphp:
    tasks:
        jsonlint:
            ignore_patterns: []
            detect_key_conflicts: false

ignore_patterns

Default: []

This is a list of patterns that will be ignored by the linter. With this option you can skip files like test fixtures. Leave this option blank to run the linter for every json file.

detect_key_conflicts

Default: false

This option will throw exceptions when duplicate keys are detected in the json file.