Skip to content

Commit ea693f3

Browse files
committed
Prevent using template literals when not needed
Fixes sindresorhus/eslint-plugin-unicorn#71
1 parent ca8e043 commit ea693f3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

index.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,9 +218,7 @@ module.exports = {
218218
'operator-linebreak': ['error', 'after'],
219219
'padded-blocks': ['error', 'never'],
220220
'quote-props': ['error', 'as-needed'],
221-
quotes: ['error', 'single', {
222-
allowTemplateLiterals: true
223-
}],
221+
quotes: ['error', 'single'],
224222
'semi-spacing': ['error', {
225223
before: false,
226224
after: true

0 commit comments

Comments
 (0)