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

1"""Tool option key definitions. 

2 

3Provides canonical identifiers for tool option keys used across the codebase. 

4""" 

5 

6from enum import StrEnum, auto 

7 

8 

9class ToolOptionKey(StrEnum): 

10 """Supported tool option key identifiers.""" 

11 

12 TIMEOUT = auto() 

13 EXCLUDE_PATTERNS = auto() 

14 INCLUDE_VENV = auto()