Coverage for lintro / tools / core / install_strategies / brew_names.py: 100%
2 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"""Mapping from canonical tool names to Homebrew formula names.
3Only entries where the brew formula name differs from the canonical
4tool name need to be listed here.
5"""
7from __future__ import annotations
9BREW_FORMULA_NAMES: dict[str, str] = {
10 "markdownlint": "markdownlint-cli2",
11 "osv_scanner": "osv-scanner",
12}