Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 526 Bytes

quotes.md

File metadata and controls

27 lines (17 loc) · 526 Bytes

quotes

Enforce the consistent use of either double or single quotes.

Enforce either:

<div class="my-class">test</div>
{{my-helper "hello there"}}

or:

<div class='my-class'>test</div>
{{my-helper 'hello there'}}

Configuration

The following values are valid configuration:

  • string -- "double" requires the use of double quotes wherever possible, "single" requires the use of single quotes wherever possible

Related Rules