python-review
Installation
SKILL.md
Code Review Skill
Static Analysis Tools Integration
Pylance Integration
# Pylance provides advanced type checking and code analysis
# Enable in VS Code settings or use via command line
# Type checking with Pylance
def analyze_with_pylance(file_path: str) -> None:
"""
Run Pylance analysis via command line or check IDE integration
"""
# Command line usage (if available):
# pylance --check file_path
# python -m py_analyzer file_path