Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Tooling for Scala3
Search
Rikito Taniguchi
October 23, 2021
0
370
Tooling for Scala3
#reactive_shinjuku
Rikito Taniguchi
October 23, 2021
Tweet
Share
More Decks by Rikito Taniguchi
See All by Rikito Taniguchi
Scala to WebAssembly: Exploring the How and Why
tanishiking
0
1k
Scala to WebAssembly #scala_waiwai
tanishiking
0
1.2k
Scala Days Madrid 2023 参加レポート
tanishiking
0
57
API-Based Code Search
tanishiking
0
41
Things happening before start coding with Metals ~behind the curtain of daily coding~
tanishiking
0
560
How we replaced a 10-year-old Perl product using Scala
tanishiking
14
33k
Quick introduction to scalafix
tanishiking
1
180
Format things with scalafmt
tanishiking
1
1.9k
トランザクション技術入門
tanishiking
0
140
Featured
See All Featured
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
27
4.3k
Optimizing for Happiness
mojombo
376
70k
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
44
6.8k
Scaling GitHub
holman
458
140k
Building Better People: How to give real-time feedback that sticks.
wjessup
364
19k
Mobile First: as difficult as doing things right
swwweet
222
8.9k
Embracing the Ebb and Flow
colly
84
4.5k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
28
9.1k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
246
1.3M
How to train your dragon (web standard)
notwaldorf
88
5.7k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
42
9.2k
Transcript
Rikito Taniguchi (@tanishiking) (Weekend OSS contributor to Scala tooling) Tooling
for Scala 3 Reactive System Meetup#7
Scala 3 has landed 🎉
Requirements for transition to Scala 3 Requirements IMO • Stabilizing
the compiler • More learning resources • Libraries support for Scala 3 • Tooling support for Scala 3 👈 today’s topic
Tooling for Scala 3 scalameta based tools • scalafmt •
scala fi x • metals TL;DR Basic Scala 3 supports are already done. Ready to use!
Scalafmt & Scala 3 scalafmt v3 supports Scala 3 Specify
runner.dialect = scala3 .scalafmt.conf
Scalafix & Scala 3 Scala fi x v0.9.28 introduces experimental
Scala 3 support ! https://github.com/liancheng/scala fi x-organize-imports#scala-3 liancheng/scala fi x-organize-imports works with Scala 3
Write your own rule for Scala 3 sbt new scalacenter/scala
fi x.g 8 ↑ generates a rule template that runs both on Scala 2 and Scala 3 You can write both SyntacticRule and SemanticRule
Metals & Scala 3 Metals works with Scala 3 !
Code Completion Code Navigation / Hover Show inferred type (will be available with Scala 3.1.0)
Metals & Scala 3 - Missing features Some advanced features
are still missing in Scala 3 😢 Exhaustive case completion Implement abstract members
Today’s takeaway • Many tools already have basic supports for
Scala 3 ! • Some features are missing… need more e ff ort 💪 • Please try it out, and give us feedback. HAPPY CODING WITH SCALA 3 !!