local refs exist - speced/respec GitHub Wiki
Default: true
Warns when an href="#fragment" link points to an anchor that doesn't exist in the document.
<section id="foo">...</section>
<!-- BAD: #bar doesn't exist in the document -->
<a href="#bar">link</a>Either fix the href to point to an existing ID, or add the missing ID to the target element.
var respecConfig = {
lint: { "local-refs-exist": false },
};