code-formatter

Format JavaScript and TypeScript code with Prettier and ESLint.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/Cursedpotential/TheBigOne --skill code-formatter-cursedpotential
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-formatter
Source: https://github.com/Cursedpotential/TheBigOne/tree/main/archive/04_Utilities/skill-porter-main/examples/simple-claude-skill
Command: npx skills add https://github.com/Cursedpotential/TheBigOne --skill code-formatter-cursedpotential

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill automates code formatting for JavaScript/TypeScript projects, ensuring consistent style across the codebase.

Core Features & Use Cases

  • Format JavaScript/TypeScript with Prettier
  • Fix ESLint issues automatically
  • Format JSON, YAML, and Markdown files
  • Run format checks before commits

Quick Start

Format a single file: Format the src/index.js file Format entire directory: Format all files in the src/ directory Check formatting without changes: Check if files in src/ are properly formatted

Frequently Asked Questions about code-formatter

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automatically format JavaScript and TypeScript code to enforce consistent style?

You can automatically format JavaScript and TypeScript code by running Prettier and ESLint automated fixes across single files, entire directories, or pre-commit checks to enforce consistent style.

Can I format JSON, YAML, and Markdown files alongside my JavaScript project?

Yes, you can format JSON, YAML, and Markdown files alongside your JavaScript and TypeScript codebase using the integrated Prettier configuration to maintain consistent styling.

How do I check if my src directory files are properly formatted without applying changes?

You can check if files in your src directory are properly formatted by running a format check command that validates styling without applying modifications to the codebase.

Does this code formatting approach support custom ESLint and Prettier configurations?

Yes, code formatting supports custom configurations by loading pluggable settings from .prettierrc and .eslintrc.js files to apply your specific linting and formatting rules.

What is the best way to run format checks before commits in a development workflow?

The best way to run format checks before commits is to integrate Prettier and ESLint automated fixes into your pre-commit hooks to ensure codebase consistency before changes are merged.