Files
2025-11-30 08:40:52 +08:00

43 lines
596 B
Markdown

---
description: View and configure code quality thresholds
---
# config
View and customize file size thresholds for different file types.
## Usage
```bash
# 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
```json
{
"default": 1000,
"extensions": {
".dart": 800,
".py": 800,
".ts": 800,
".tsx": 600,
".jsx": 600
}
}
```
## Implementation
```bash
${CLAUDE_PLUGIN_ROOT}/scripts/show_config.py
```