“Your component reached 2,000 lines”
Three assistant passes each added a section to the same file. No single diff looked alarming.
little-owl check --details🟡 complexity <CheckoutPage> is 2,014 lines
src/app/checkout/page.tsx:18
The CheckoutPage component is 2,014 lines, past the 800-line budget.
Components this size usually mix data fetching, state and presentation.
→ Extract the sub-sections into their own components, and move data
logic into hooks.Note. Components get their own budget, separate from plain functions, because they are legitimately longer.