check_naming
Detect PEP 8 naming violations in Python code. Scans files or directories to flag functions, methods, classes, and constants that don't follow snake_case, CamelCase, or UPPER_SNAKE_CASE, and provides corrective suggestions.
Instructions
Check Python naming conventions (PEP 8). Detects violations: functions/methods must be snake_case, classes must be CamelCase, constants must be UPPER_SNAKE_CASE. Returns violations with suggestions.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | File or directory path to check. |