Skip to content

Latest commit

 

History

History
35 lines (21 loc) · 744 Bytes

quotes.md

File metadata and controls

35 lines (21 loc) · 744 Bytes

quotes

👗 The extends: 'stylistic' property in a configuration file enables this rule.

Enforce the consistent use of either double or single quotes.

Examples

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

References