setup-formatting

Configure code formatting tools

Content Preview
# Setup Formatting Command

Configure code formatting tools

## Instructions

Setup code formatting following these steps: **$ARGUMENTS**

1. **Language-Specific Tools**

   **JavaScript/TypeScript:**
   ```bash
   npm install -D prettier
   echo '{"semi": true, "singleQuote": true, "tabWidth": 2}' > .prettierrc
   ```

   **Python:**
   ```bash
   pip install black isort
   echo '[tool.black]\nline-length = 88\ntarget-version = ["py38"]' > pyproject.toml
   ```

   **Java:**
   ```bash
   # Goo
How to Use

Recommended: Install to project (local)

mkdir -p .claude/skills
curl -o .claude/skills/setup-formatting.md \
  https://raw.githubusercontent.com/qdhenry/Claude-Command-Suite/main/.claude/commands/setup/setup-formatting.md

Skill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.

Alternative: Clone full repo

git clone https://github.com/qdhenry/Claude-Command-Suite

Then reference at .claude/commands/setup/setup-formatting.md

Related Skills