Skip to content

Commit

Permalink
fix: update style/quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Sep 28, 2023
1 parent 426fa1a commit 5f554fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/configs/stylistic.ts
Expand Up @@ -76,7 +76,7 @@ export function stylistic(): FlatESLintConfigItem[] {
'style/object-property-newline': ['error', { allowMultiplePropertiesPerLine: true }],
'style/operator-linebreak': ['error', 'before'],
'style/padded-blocks': ['error', { blocks: 'never', classes: 'never', switches: 'never' }],
'style/quotes': ['error', 'single'],
'style/quotes': ['error', 'single', { allowTemplateLiterals: true, avoidEscape: true }],
'style/rest-spread-spacing': ['error', 'never'],
'style/semi': ['error', 'never'],
'style/semi-spacing': ['error', { after: true, before: false }],
Expand Down

0 comments on commit 5f554fd

Please sign in to comment.