plugins marketplace
← All plugins

formatter

v2.26.0

Comprehensive code formatting plugin with Prettier integration. Use when you need to format code, validate formatting, or maintain consistent code style. Activates with phrases like 'format my code', 'check formatting', or 'apply code style'. Supports JavaScript, TypeScript, JSON, CSS, Markdown, and many other file types with automatic formatting on file operations.

Claude Code1 skill

by Jeremy LongshoreMIT2.6kupdated 10 hours ago

Source

git clone https://github.com/jeremylongshore/claude-code-plugins-plus-skills

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/examples/formatter/ inside the repository.

Layout

plugins/examples/formatter/
├── .claude-plugin/plugin.json
└── skills/code-formatter/SKILL.md

Skills1

code-formatterskills/code-formatter/SKILL.md

Execute automatically formats and validates code files using Prettier and other formatting tools. Use when users mention "format my code", "fix formatting", "apply code style", "check formatting", "make code consistent", or "clean up code formatting". Handles JavaScript, TypeScript, JSON, CSS, Markdown, and many other file types. Trigger with relevant phrases based on skill purpose.

Manifests1

plugins/examples/formatter/.claude-plugin/plugin.json
{
  "name": "formatter",
  "version": "2.26.0",
  "description": "Comprehensive code formatting plugin with Prettier integration. Use when you need to format code, validate formatting, or maintain consistent code style. Activates with phrases like 'format my code', 'check formatting', or 'apply code style'. Supports JavaScript, TypeScript, JSON, CSS, Markdown, and many other file types with automatic formatting on file operations.",
  "author": {
    "name": "Jeremy Longshore",
    "email": "jeremy@intentsolutions.io"
  },
  "license": "MIT",
  "keywords": [
    "formatting",
    "prettier",
    "code-style",
    "linting",
    "automation",
    "hooks",
    "validation"
  ],
  "repository": "https://github.com/jeremylongshore/claude-code-plugins"
}