{
  "id": "D004",
  "name": "Avoid shrinkWrap in ListView",
  "description": "ListView with shrinkWrap: true causes performance issues. Use Expanded/Flexible or SliverList instead",
  "category": "dart",
  "severity": "warning",
  "languages": ["dart"],
  "tags": ["flutter", "performance", "listview", "best-practice"],
  "config": {
    "checkTypes": ["ListView", "GridView"],
    "message": "Avoid using shrinkWrap: true as it disables lazy loading and forces the ListView to render all items at once, causing performance issues"
  }
}
