apply_quality_rules
Enhance code quality by enforcing predefined quality rules for naming, structure, accessibility, or language-specific standards such as JavaScript, TypeScript, or React. Automatically triggered by keywords like 'apply rules' or 'follow conventions.'
Instructions
IMPORTANT: This tool should be automatically called when users say "규칙 적용", "표준 적용", "apply rules", "apply standards", "follow conventions", "적용해" or similar keywords. Apply quality rules
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | Programming language context | |
scope | Yes | Application scope |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"description": "Programming language context",
"enum": [
"javascript",
"typescript",
"react",
"vue",
"general"
],
"type": "string"
},
"scope": {
"description": "Application scope",
"enum": [
"naming",
"structure",
"typescript",
"react",
"accessibility",
"all"
],
"type": "string"
}
},
"required": [
"scope"
],
"type": "object"
}