Marked as helpful by the asker
Find any others:
git grep -nE '^(<<<<<<<|=======|>>>>>>>)( |$)'Code files would fail the build with those markers, but markdown, JSON strings in CMS content and HTML templates don't, so they slip through.
Stop it from happening again:
- Before committing a merge:
git diff --checkreports leftover conflict markers. - Add that to CI so a PR with markers fails:
- run: "! git grep -nE '^(<<<<<<<|>>>>>>>)( |$)'" - When Cursor says "resolved", open the file and look. The editor's merge view shows remaining conflicts, the chat message doesn't.