Inline Control
Æsthetic provides inline control options for developers using comments.
Ignore File
<!-- esthetic-ignore -->
<div class="foo">
<ul>
<li>File will not be formatted</li>
</ul>
</div>
Ignore Next
<!-- esthetic-ignore-next -->
<div class="foo">
This token will not be formatted
</div>
<ul>
<li>This will format</li>
</ul>
Ignore Region
<!-- esthetic-ignore-start -->
<div class="foo">
This token will not be formatted
</div>
<!-- esthetic-ignore-end -->
<ul>
<li>This will format</li>
</ul>