Avoid positive tabIndex values
Positive `tabIndex` values create a custom keyboard order that is fragile and usually less accessible than DOM order.
#Metadata
#Why it matters
Manual focus sequencing is easy to break as layouts evolve and makes keyboard navigation less predictable for assistive-technology users.
#Remediation
Prefer source-order focus flow, use `tabIndex={0}` only when needed, and reserve negative values for programmatic focus targets.
#Repository path
The generated metadata points to critiq-rules/libs/rules/catalog/rules/typescript/ts.react.no-positive-tabindex.rule.yaml.