Rule: html-turbo-permanent
Ensure that turbo permanent attributes are used correctly in HTML elements. The data-turbo-permanent attribute is used to mark elements that should persist across page navigations in Turbo Drive.
Data turbo permanent is active if the attribute is present, data-turbo-permanent="false" behaves the same as data-turbo-permanent. This should be disallowed to avoid confusion.
<div id="cart-counter" data-turbo-permanent>1 item</div><div id="cart-counter" data-turbo-permanent="true">1 item</div>
<div id="cart-counter" data-turbo-permanent="false">1 item</div>
<div id="cart-counter" data-turbo-permanent="foo">1 item</div>