for more information visit the package's GitHub page
Package contains the following modules:
This package was republished as jfmengels/elm-review-the-elm-architecture
in order to have a more consistent naming convention for elm-review
rule packages.
To migrate, I recommend going to your review configuration and running the following commands:
# NOTE: You'll need to have Node.js installed to be able to use `npx`
npx elm-json uninstall jfmengels/review-tea --yes
npx elm-json install jfmengels/elm-review-the-elm-architecture --yes
Provides elm-review
rules to improve your use of The Elm Architecture.
NoMissingSubscriptionsCall
- Reports likely missing calls to a subscriptions
function.NoRecursiveUpdate
- Reports recursive calls of an update
function.NoUselessSubscriptions
- Reports subscriptions
functions that never return a subscription.module ReviewConfig exposing (config)
import NoMissingSubscriptionsCall
import NoRecursiveUpdate
import NoUselessSubscriptions
import Review.Rule exposing (Rule)
config : List Rule
config =
[ NoMissingSubscriptionsCall.rule
, NoRecursiveUpdate.rule
, NoUselessSubscriptions.rule
]