From formatter
Checks code files against Prettier formatting rules and reports which files need formatting, without modifying them.
How this command is triggered — by the user, by Claude, or both
Slash command
/formatter:format-checkThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Format Check Command Validate code formatting without making any changes. Perfect for CI/CD pipelines and pre-commit checks. ## Usage I'll check your code formatting by: 1. **Scanning Files** - Find all formattable files 2. **Validating Format** - Check against Prettier rules 3. **Reporting Issues** - List files that need formatting 4. **Exit Status** - Return success/failure for CI integration ## Examples ## Output Examples ### All Files Formatted ### Files Need Formatting ## CI/CD Integration Use in GitHub Actions: ## Note This command only checks formatting, it never ...
Validate code formatting without making any changes. Perfect for CI/CD pipelines and pre-commit checks.
I'll check your code formatting by:
# Check all files
/format-check
# Check specific directory
/format-check src/
# Check specific file types
/format-check **/*.js
# Check with custom config
/format-check --config .prettierrc.strict src/
Checking formatting...
✓ src/app.js
✓ src/components/Button.jsx
✓ package.json
━━━━━━━━━━━━━━━━━━━━━━━
✅ All 3 files are properly formatted
Checking formatting...
✓ src/app.js
⚠ src/components/Button.jsx
⚠ package.json
━━━━━━━━━━━━━━━━━━━━━━━
⚠ Found 2 files that need formatting
Files requiring formatting:
- src/components/Button.jsx
- package.json
Run /format to fix these issues
Use in GitHub Actions:
- name: Check code formatting
run: |
/plugin install formatter@claude-code-plugins-plus
/format-check || exit 1
This command only checks formatting, it never modifies files. Use /format to actually apply formatting.
npx claudepluginhub ktiseos-nyx/claude-code-plugins-plus-skills --plugin formatter14plugins reuse this command
First indexed Dec 31, 2025
Showing the 6 earliest of 14 plugins
/format-checkChecks code formatting against Prettier rules without modifying files, reporting unformatted files for CI/CD or pre-commit checks.
/lint-fixAuto-fixes all linting and formatting issues in the project. Detects project type and runs appropriate formatters and linters with auto-fix enabled.
/quality-gateRuns project formatter quality gate on a single file and reports remediation steps. Checks TS/JS, Go, and Python files using Biome, Prettier, gofmt, or ruff.
/lintActivates the holistic-linting skill to run full linting ecosystem on optional file/directory paths or all modified files in the current task.
/lintAuto-detects Drupal or Next.js projects and runs project-specific linting tools (PHPCS, ESLint, etc.), reporting violations with line numbers and auto-fix suggestions.