Skip to content

Commit

Permalink
fix(style/quotes): disable avoidEscape for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Oct 5, 2023
1 parent bbac132 commit 4765768
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/configs/stylistic.ts
Expand Up @@ -98,7 +98,7 @@ export function stylistic(options: StylisticConfig = {}): FlatESLintConfigItem[]
'style/operator-linebreak': ['error', 'before'],
'style/padded-blocks': ['error', { blocks: 'never', classes: 'never', switches: 'never' }],
'style/quote-props': ['error', 'consistent-as-needed'],
'style/quotes': ['error', quotes, { allowTemplateLiterals: true, avoidEscape: true }],
'style/quotes': ['error', quotes, { allowTemplateLiterals: true, avoidEscape: false }],
'style/rest-spread-spacing': ['error', 'never'],
'style/semi': ['error', 'never'],
'style/semi-spacing': ['error', { after: true, before: false }],
Expand Down

0 comments on commit 4765768

Please sign in to comment.