Skip to content

Commit

Permalink
woops
Browse files Browse the repository at this point in the history
  • Loading branch information
snewcomer committed Nov 8, 2022
1 parent aa16092 commit 061e8e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rules/no-duplicates.js
Expand Up @@ -110,7 +110,7 @@ function getFix(first, rest, sourceCode, context) {
([result, needsComma], specifier) => {
const isTypeSpecifier = specifier.importNode.importKind === 'type';
const preferInline = context.options[0] && context.options[0]['prefer-inline'];
const insertText = `${prefer-inline && isTypeSpecifier ? 'type ' : ''}${specifier.text}`;
const insertText = `${preferInline && isTypeSpecifier ? 'type ' : ''}${specifier.text}`;
return [
needsComma && !specifier.isEmpty
? `${result},${insertText}`
Expand Down

0 comments on commit 061e8e9

Please sign in to comment.