👗 The extends: 'stylistic'
property in a configuration file enables this rule.
This rule forbids unnecessary use of quotes (""
) around expressions like {{myValue}}
.
This rule forbids the following:
This rule allows the following:
Use regexp find-and-replace to fix existing violations of this rule:
Before | After |
---|---|
="{{([^}]+)}}" |
={{$1}} |