A simple toml syntax checker
Project description
A simple toml syntax checker.
Designed to be used by pre-commit hooks.
Installation
pip install -U tomlcheck
Usage
Check files:
tomlcheck $(find . -type f -name "*.toml")
# Or read from stdin
find . -type f -name "*.toml" | tomlcheck -
With logging:
tomlcheck --log-level DEBUG $(find . -type f -name "*.toml")
# Or read from stdin
find . -type f -name "*.toml" | tomlcheck --log-level DEBUG -
In pre-commit config:
# .pre-commit-config.yaml
- repo: local
hooks:
- id: tomlcheck
name: Check TOML Syntax
description: Checks TOML files for valid syntax.
entry: tomlcheck
language: system
files: \**/*.toml$
stages: [commit, push, manual]
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tomlcheck-0.2.2.tar.gz
(2.9 kB
view hashes)
Built Distribution
Close
Hashes for tomlcheck-0.2.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ec8aeed8e586afbc53636867b6630a32feef51dc4776614721cd89b51ff2a9e |
|
MD5 | dea1eb87ef6dbb6238ced3d31e48ad8c |
|
BLAKE2b-256 | 4ba03f3cfdafe10e2513f7d6c634e452d0745ee744e7abe8c40abb9b1ddac891 |