Skip to main content

Lint your JSON files!

Project description

json-linter

Lint your JSON files!

Features

  • Check if keys are sorted alphabetically...
  • Check if your keys are either in camelCase, snake_case or kebab-case...
  • ...and automatically fix (some) of these issues!

Install

You need to have Python 3.10+ installed.

$ pip install json-linter

Usage

# Lint a single file...
$ json-linter my-file.json
- my-file.json
        rule_keys_are_sorted

# Lint multiple files...
$ json-linter a.json b.json
- a.json
        rule_keys_are_sorted
+ b.json

# Lint all files in a directory
$ json-linter files
- files/a.json
        rule_keys_are_sorted
+ files/b.json

# Lint all files in a directory recursively
$ json-linter files --recursive
- files/in/a/subdirectory/a.json
        rule_keys_are_sorted
# ...

# Lint all files in a directory recursively with .config and .cfg ending
$ json-linter files -r --extensions cfg config
- files/in/a/subdirectory/a.cfg
        rule_keys_are_sorted
+ files/in/a/subdirectory/b.config
# ...

# Fix files (will overwrite the file with a fixed version and then lint)
$ json-linter my-file.json --fix
+ my-file.json

# Overwrite configuration values
$ json-linter my-file.json --config-set naming_style=KEBAB_CASE indent=2

License

GNU General Public License v3

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

json_linter-1.1.0-py3-none-any.whl (21.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page