Mypy

Mypy

rootwarp 6700cb4 600 B Updated

File contents

/mypy

Run type checking on the Python project using uv.

Instructions

Run mypy for type checking:

uv run mypy src/

Or check specific files:

uv run mypy src/<package_name>/main.py

For strict mode:

uv run mypy --strict src/

Common options:

# Show error codes
uv run mypy --show-error-codes src/

# Ignore missing imports
uv run mypy --ignore-missing-imports src/

# Generate HTML report
uv run mypy --html-report mypy-report src/

Analyze any type errors and suggest fixes with proper type annotations.

rootwarp/claude-code-plugins-monorepo/tree/main/plugins/python/skills/mypy commit 6700cb4a7a

Frequently asked questions

npx skillmds@latest add rootwarp/mypy