48 lines
1.1 KiB
Markdown
48 lines
1.1 KiB
Markdown
# code-formatter - Gemini CLI Extension
|
|
|
|
Formats code files using prettier and eslint. Use when the user wants to format code, fix linting issues, or clean up code style.
|
|
|
|
## Quick Start
|
|
|
|
After installation, you can use this extension by asking questions or giving commands naturally.
|
|
|
|
|
|
# Code Formatter Skill
|
|
|
|
Automatically formats code files using industry-standard tools.
|
|
|
|
## Capabilities
|
|
|
|
- Format JavaScript/TypeScript with Prettier
|
|
- Fix ESLint issues automatically
|
|
- Format JSON, YAML, and Markdown files
|
|
- Run format checks before commits
|
|
|
|
## Usage Examples
|
|
|
|
**Format a single file:**
|
|
```
|
|
"Format the src/index.js file"
|
|
```
|
|
|
|
**Format entire directory:**
|
|
```
|
|
"Format all files in the src/ directory"
|
|
```
|
|
|
|
**Check formatting without changes:**
|
|
```
|
|
"Check if files in src/ are properly formatted"
|
|
```
|
|
|
|
## Configuration
|
|
|
|
Set these environment variables for custom configuration:
|
|
- `PRETTIER_CONFIG`: Path to prettier config (default: .prettierrc)
|
|
- `ESLINT_CONFIG`: Path to eslint config (default: .eslintrc.js)
|
|
|
|
|
|
---
|
|
|
|
*This extension was converted from a Claude Code skill using [skill-porter](https://github.com/jduncan-rva/skill-porter)*
|