| name | source-command-lint |
| description | Run all linters and code quality checks |
source-command-lint
Use this skill when the user asks to run the migrated source command lint.
Command Template
Run comprehensive code quality checks on the project.
Execute the following checks:
- Black formatting check:
black --check src/ tests/
- isort import sorting check:
isort --check-only src/ tests/
- Ruff linting:
ruff check src/ tests/
- MyPy type checking:
mypy src/
Report back with:
- List of any formatting issues
- Import sorting problems
- Linting errors or warnings
- Type checking errors
- Suggested fixes for any issues found
If there are issues, ask if I should auto-fix them.