Babysitter prettier

Prettier configuration and integration.

install
source · Clone the upstream repo
git clone https://github.com/a5c-ai/babysitter
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/a5c-ai/babysitter "$T" && mkdir -p ~/.claude/skills && cp -r "$T/library/specializations/web-development/skills/prettier" ~/.claude/skills/a5c-ai-babysitter-prettier && rm -rf "$T"
manifest: library/specializations/web-development/skills/prettier/SKILL.md
source content

Prettier Skill

Expert assistance for Prettier configuration.

Capabilities

  • Configure Prettier
  • Integrate with ESLint
  • Handle editor setup
  • Configure for CI

Configuration

// .prettierrc
{
  "semi": true,
  "singleQuote": true,
  "tabWidth": 2,
  "trailingComma": "es5",
  "printWidth": 100
}
// .prettierignore
node_modules
dist
.next
coverage

Target Processes

  • code-formatting
  • team-standards
  • ci-cd-setup