summaryrefslogtreecommitdiffstats
path: root/pre_commit/commands/validate_config.py
blob: 91bb017a366a2a7b6abed76198f94a77a6e6d168 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from __future__ import annotations

from pre_commit import clientlib


def validate_config(filenames: list[str]) -> int:
    ret = 0

    for filename in filenames:
        try:
            clientlib.load_config(filename)
        except clientlib.InvalidConfigError as e:
            print(e)
            ret = 1

    return ret