pre-commit-hooks/pre_commit_hooks/check_toml.py

31 lines
771 B
Python
Raw Permalink Normal View History

from __future__ import annotations
2019-03-28 06:13:45 +08:00
import argparse
2022-05-24 14:44:13 +08:00
import sys
from collections.abc import Sequence
2019-03-28 06:13:45 +08:00
2022-05-24 14:44:13 +08:00
if sys.version_info >= (3, 11): # pragma: >=3.11 cover
import tomllib
else: # pragma: <3.11 cover
import tomli as tomllib
2019-03-28 06:13:45 +08:00
def main(argv: Sequence[str] | None = None) -> int:
2019-03-28 06:13:45 +08:00
parser = argparse.ArgumentParser()
parser.add_argument('filenames', nargs='*', help='Filenames to check.')
args = parser.parse_args(argv)
retval = 0
for filename in args.filenames:
try:
2022-05-24 14:44:13 +08:00
with open(filename, mode='rb') as fp:
tomllib.load(fp)
except tomllib.TOMLDecodeError as exc:
2020-02-06 03:10:42 +08:00
print(f'{filename}: {exc}')
2019-03-28 06:13:45 +08:00
retval = 1
return retval
if __name__ == '__main__':
raise SystemExit(main())