Coverage for lintro / parsers / shfmt / __init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.13.0, created at 2026-04-03 18:53 +0000
« prev ^ index » next coverage.py v7.13.0, created at 2026-04-03 18:53 +0000
1"""Shfmt parser module.
3This module provides parsing utilities for shfmt output, which is a shell
4script formatter supporting POSIX, Bash, and mksh shells.
5"""
7from lintro.parsers.shfmt.shfmt_issue import ShfmtIssue
8from lintro.parsers.shfmt.shfmt_parser import parse_shfmt_output
10__all__ = ["ShfmtIssue", "parse_shfmt_output"]