Skip to content

Commit

Permalink
Merge pull request #247 from scala-steward/update/scalafmt-core-3.8.3
Browse files Browse the repository at this point in the history
Update scalafmt-core to 3.8.3
  • Loading branch information
SethTisue committed Aug 14, 2024
2 parents f17a545 + 1fac5ae commit 6fc368a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Scala Steward: Reformat with scalafmt 3.8.3
3675303ce05e98548cc6f36447ab11142692cb87
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.8.2
version = 3.8.3
runner.dialect = scala213
maxColumn = 100
newlines.source = keep
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ abstract class ExtractDependencies extends PluginComponent {
*
* SelectFromTypeTree
*/
case id: Ident => addDependency(id.symbol)
case sel @ Select(qual, _) => traverse(qual); addDependency(sel.symbol)
case id: Ident => addDependency(id.symbol)
case sel @ Select(qual, _) => traverse(qual); addDependency(sel.symbol)
case sel @ SelectFromTypeTree(qual, _) => traverse(qual); addDependency(sel.symbol)

// In some cases (eg. macro annotations), `typeTree.tpe` may be null.
Expand Down

0 comments on commit 6fc368a

Please sign in to comment.