596 B
596 B
description
| description |
|---|
| View and configure code quality thresholds |
config
View and customize file size thresholds for different file types.
Usage
# View current configuration
/guard:config
# Show available options
/guard:config help
Configuration
Edit .claude/quality_config.json in your project root to customize thresholds.
Example Configuration
{
"default": 1000,
"extensions": {
".dart": 800,
".py": 800,
".ts": 800,
".tsx": 600,
".jsx": 600
}
}
Implementation
${CLAUDE_PLUGIN_ROOT}/scripts/show_config.py