Coverage for lintro / enums / tool_option_key.py: 100%
5 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"""Tool option key definitions.
3Provides canonical identifiers for tool option keys used across the codebase.
4"""
6from enum import StrEnum, auto
9class ToolOptionKey(StrEnum):
10 """Supported tool option key identifiers."""
12 TIMEOUT = auto()
13 EXCLUDE_PATTERNS = auto()
14 INCLUDE_VENV = auto()