Claude Code Plugins

Community-maintained marketplace

Feedback

prettier-config-generator

@ehtbanton/ClaudeSkillsRepo
0
0

Generate Prettier configuration files for consistent code formatting across JavaScript, TypeScript, CSS, and other file types. Triggers on "create prettier config", "generate prettier configuration", "prettier setup", "code formatting config".

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name prettier-config-generator
description Generate Prettier configuration files for consistent code formatting across JavaScript, TypeScript, CSS, and other file types. Triggers on "create prettier config", "generate prettier configuration", "prettier setup", "code formatting config".

Prettier Config Generator

Generate Prettier configuration files for consistent code formatting.

Output Requirements

File Output: .prettierrc, .prettierrc.js, or prettier.config.js Format: Valid Prettier configuration Standards: Prettier 3.x

When Invoked

Immediately generate a complete Prettier configuration with formatting rules for the project type.

Configuration Template

{
  "semi": true,
  "singleQuote": true,
  "tabWidth": 2,
  "trailingComma": "es5",
  "printWidth": 100,
  "bracketSpacing": true,
  "arrowParens": "avoid"
}

Example Invocations

Prompt: "Create prettier config for TypeScript project" Output: Complete .prettierrc with TypeScript-friendly settings.