
Episode 21
021: elm-review Tips
We revisit elm-review with some tips, useful workflows, and helpful packages that have come out since our intro to elm-review episode.
January 4, 202150m 41s
Audio is streamed directly from the publisher (cdn.simplecast.com) as published in their RSS feed. Play Podcasts does not host this file. Rights-holders can request removal through the copyright & takedown page.
Show Notes
- The
npxcommand runs NPM binaries from your shell
Some tricks to easily try elm-review with no setup:
npx elm-review --template jfmengels/elm-review-unused/example
Init with a given template:
npx elm-review init --template jfmengels/elm-review-unused/example
Incremental adoption
- Don't enable lots with errors, better to have few with no errors
- Enable in CI
ignoreErrorsForFilesignoreErrorsForDirectories- Try the
--fix,--fix-all, and--watchflags (see how to run elm-review)
Useful packages and workflow
Review rule for Documentation.ReadmeLinksPointToCurrentVersion
Safe unsafe operations in Elm blog post
Getting started with elm-review episode
Incremental Steps episode