Coverage for spdx_lint/cli.py: 0.00%
7 statements
« prev ^ index » next coverage.py v7.4.1, created at 2024-02-04 22:24:03 +00:00
« prev ^ index » next coverage.py v7.4.1, created at 2024-02-04 22:24:03 +00:00
1"""Visit folder tree with SPDX documents, validate the latter, and generate reports."""
3import sys
4from typing import no_type_check
6import spdx_lint.lint as spdx_lint
9@no_type_check
10def main(argv=None):
11 """Process the job."""
12 argv = sys.argv[1:] if argv is None else argv
13 spdx_lint.main(argv)