format-codebase-pint
Installation
SKILL.md
Format Codebase with Pint
When To Use
Use this skill when staging commits, fixing PSR/formatting rule violations, or updating linting rules.
Workflow
- Verify setup: Ensure Pint is installed via composer (
composer require laravel/pint --dev). - Run linting fixer: Run
./vendor/bin/pintfrom the root of the repository to fix code styling automatically. - Verify files: Run
git diffto ensure changes align with formatting expectations. - Dry run audits: In CI pipelines, run
./vendor/bin/pint --testto audit without writing files.