code-formatter
Installation
SKILL.md
Code Formatter Skill
Apply consistent code formatting and style according to established guidelines.
Formatting Standards
File Naming
- All files:
lowercase_with_underscores - Examples:
user_service.py,api_client.ts,data_helper.js
Variable Naming
- Variables/Functions:
camelCase - Classes/Components:
PascalCase - Constants:
UPPER_CASE_SNAKE_CASE
// Good
const userName = 'John';
const API_KEY = 'secret';