for more information visit the package's GitHub page
Package contains the following modules:
Provides an elm-review
rule to generate JSON decoders and encoders from a JSON sample in a Debug.todo
string.
JsonToElm
- Finds JSON samples in Debug.todo
strings and offers to generate JSON decoders and encoders from them. The JSON part of the string needs to be prefixed with @json
to allow the rule to detect it. module ReviewConfig exposing (config)
import JsonToElm
import Review.Rule exposing (Rule)
config : List Rule
config =
[ JsonToElm.rule
]
You can try the example configuration above out by running the following command:
elm-review --template alexkorban/elm-review-json-to-elm/example