···1212import Json.Decode as Json
1313import Json.Encode
1414import List.Extra as List
1515-import List.Zipper as Zipper exposing (Zipper)
1615import Maybe.Extra as Maybe
1716import Playlists.Encoding as Playlists
1817import Return2 exposing (..)
···328327updateWithModel : Model -> Msg -> Return Model Msg
329328updateWithModel model msg =
330329 update msg model
331331-332332-333333-updateSearchIndex : Json.Value -> Model -> Return Model Msg
334334-updateSearchIndex value model =
335335- value
336336- |> Tracks.UpdateSearchIndex
337337- |> TracksMsg
338338- |> updateWithModel model
339330340331341332
···11+module ReviewConfig exposing (config)
22+33+{-| Do not rename the ReviewConfig module or the config function, because
44+`elm-review` will look for these.
55+To add packages that contain rules, add them to this review project using
66+`elm install author/packagename`
77+when inside the directory containing this file.
88+-}
99+1010+import NoDebug
1111+import NoUnused.CustomTypeConstructors
1212+import NoUnused.Variables
1313+import Review.Rule exposing (Rule)
1414+1515+1616+config : List Rule
1717+config =
1818+ [ NoDebug.rule
1919+ , NoUnused.Variables.rule
2020+ ]