| name | elm |
| description | Use when working with Elm projects. Requires running elm-test and elm-review for quality assurance. |
Elm Development
Required Tools
Always use these tools when working on Elm projects:
elm-test
Run tests after making changes:
elm-test
elm-review
Run static analysis after making changes:
elm-review
Workflow
- Make your changes to
.elm files
- Run
elm-test to verify tests pass
- Run
elm-review to catch common issues
- Fix any reported problems before considering the task complete
Common Commands
elm make src/Main.elm
elm reactor
elm-test
elm-review
elm-review --fix
elm install <package>