| name | prettier |
| description | Use this skill when the user wants to format code with prettier. |
Prettier Plugin
Code formatter using prettier. Opinionated code formatter for JavaScript, TypeScript, CSS, HTML, JSON, and more.
Commands
Code Formatting
prettier file format — Format file with prettier
prettier file check — Check if files are formatted
Usage Examples
- "prettier file format --file index.js"
- "prettier file check --file src/"
- "prettier file format --file index.js --single_quote"
Installation
npm install -g prettier
Examples
prettier --write index.js
prettier --write src/
prettier --check src/
prettier --write --single-quote index.js
prettier --write --trailing-comma all index.js
prettier --write package.json
prettier --check src/
Key Features
- Opinionated code formatting
- Supports multiple languages (JS, TS, CSS, HTML, JSON, Markdown)
- Configurable via .prettierrc
- Check mode for CI/CD
- Consistent code style across projects