Skip to content

Commit

Permalink
autofix e2e tests7
Browse files Browse the repository at this point in the history
  • Loading branch information
dbale-altoros committed Jul 1, 2024
1 parent f51ea6a commit 8339397
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/rules/naming/imports-order.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ class ImportsOrderChecker extends BaseChecker {
range: child.range,
path: child.path,
fullSentence: child.symbolAliases
? this.getFullSentence(child.symbolAliases) + '"' + child.path + '";'
: `import "${child.path}";`,
? this.getFullSentence(child.symbolAliases) + "'" + child.path + "';"
: `import '${child.path}';`,
}))

// copy the object into another one
Expand Down

0 comments on commit 8339397

Please sign in to comment.