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
Quick introduction to scalafix
Search
Rikito Taniguchi
January 19, 2019
Technology
1
160
Quick introduction to scalafix
Scala fukuoka 2019 LT
Rikito Taniguchi
January 19, 2019
Tweet
Share
More Decks by Rikito Taniguchi
See All by Rikito Taniguchi
Scala to WebAssembly: Exploring the How and Why
tanishiking
0
800
Scala to WebAssembly #scala_waiwai
tanishiking
0
1k
Scala Days Madrid 2023 参加レポート
tanishiking
0
49
Tooling for Scala3
tanishiking
0
350
API-Based Code Search
tanishiking
0
39
Things happening before start coding with Metals ~behind the curtain of daily coding~
tanishiking
0
550
How we replaced a 10-year-old Perl product using Scala
tanishiking
14
33k
Format things with scalafmt
tanishiking
1
1.8k
トランザクション技術入門
tanishiking
0
130
Other Decks in Technology
See All in Technology
『GRANBLUE FANTASY Relink』ソフトウェアラスタライザによる実践的なオクルージョンカリング
cygames
0
120
技術的負債解消の取り組みと専門チームのお話
bengo4com
0
330
持続可能なソフトウェア開発を支える『GitHub CI/CD実践ガイド』
tmknom
5
970
AWS SAW を広めたい @四国クラウドお遍路
kazzpapa3
0
230
エンジニア視点で見る、 組織で運用されるデザインシステムにするには
shunya078
1
300
やってやろうじゃないかメカアジャイル! / Let's do it, mechanical agile!
psj59129
1
560
AI活用したくてもできなかった不動産SaaSの今とこれから
nealle
0
330
「家族アルバム みてね」における運用管理・ オブザーバビリティの全貌 / Overview of Operation Management and Observability in FamilyAlbum
isaoshimizu
4
160
「認証認可」という体験をデザインする ~Nekko Cloud認証認可基盤計画
logica0419
2
420
より快適なエラーログ監視を目指して
leveragestech
4
1.4k
Agile in Automotive Industry, puzzles and lights.
hiranabe
3
1.2k
プロダクトエンジニアを支えるための開発生産性向上施策
tsukakei
0
140
Featured
See All Featured
GraphQLの誤解/rethinking-graphql
sonatard
65
9.8k
A better future with KSS
kneath
235
17k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
26
1.3k
Faster Mobile Websites
deanohume
304
30k
A Modern Web Designer's Workflow
chriscoyier
691
190k
Fashionably flexible responsive web design (full day workshop)
malarkey
401
65k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
248
20k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
41
6.5k
Designing for Performance
lara
604
68k
Automating Front-end Workflow
addyosmani
1365
200k
Typedesign – Prime Four
hannesfritz
39
2.3k
Build The Right Thing And Hit Your Dates
maggiecrowley
30
2.3k
Transcript
Quick introduction to scalafix Scala福岡 2019
About me - 谷口 力斗 / @tanishiking - 株式会社はてな -
Scala / TypeScript / Go / Perl - 高校生までは福岡に住んでました
Scalafix - https://scalacenter.github.io/scalafix/ - Refactoring and linting tool for Scala
- scala.meta - Builtin Rules / Suppressing Rules - Linter - 独自ルールを作ろう
Scala.meta
Scala.meta - https://scalameta.org/ - Scala compiler とは独立した Scala プログラム 解析のためのライブラリ
- Syntactic API - Semantic API
Scala.meta - Syntactic API - Scalaプログラムをパースしトークン列や構文木 を返すAPI println("function(argument)".parse[Stat].get.struct ure) //
Term.Apply(Term.Name("function"), List(Term.Name("argument")))
Scala.meta - Semantic API - 型情報やシンボルの情報を提供するAPI - compiler plugin を使って
typer phase の後に SemanticDB を生成 - SemanticDB - protobuf で定められたスキーマに従ってシリ アライズされたバイナリ
Builtin Rules / Supressing Rules
Builtin Rules - https://scalacenter.github.io/scalafix/docs/rul es/overview.html // .scalafix.conf rules = [
DisableSyntax, RemoveUnused ]
Suppressing Rules @SuppressWarnings(Array("all")) def foo = ??? List("", null) //
scalafix: ok // scalafix: off foo(null) // scalafix: on
Linter
Linter - v0.5 から linter としての機能が豊富に - 将来的に metals (scala.meta
ベースの Language Server 実装) から scalafix を使った refactoring や lint の提供も
Lint (vs wartremover) - (+) Lintに加えて自動修正もできる - (+) syntactic rulesの実行にコンパイルは不要
なので高速 - (+) 独自ルールの実装が容易(wart実装も難しくないけど) - (-) Builtin rule が少ない - (-) scala compiler と比べて SemanticDB から取 得できる情報は制限される
独自ルールを 作ろう
独自ルールを作ろう https://scalacenter.git hub.io/scalafix/docs/d evelopers/setup.html
独自ルールを作ろう - 作ってみた https://github.com/tanishiking/scalafix-check-scaladoc - publicなAPIにscaladocが書かれてなかったら 怒ってくれるルール - golintとかにあるやつ
まとめ - scalafix は refactoring ツールとしてだけでなく linter としても使える - scala.metaのAPIを使って簡単に独自ルールが
作れる