* [x] Exceeded line length * [x] Unnecessary `List.concat` when concatenating only fixed size lists. * [x] Record type aliases should be formatted multiline when exceeding `N` fields. (#24) * [ ] Functions where 'too much' happens. * [ ] Function should be moved to another module for better encapsulation. * [ ] ~~Undocumented function that is exposed by module.~~ * [ ] Use alias for complex 'thing'. This can be done by inspecting signatures. * [ ] ~~Use point free notation where possible (`\_ -> b` to `always b` and `\x -> List.map f x` to `List.map f`)~~ * [ ] Determine untested code. * [ ] Use multiline string instead of concatenated single line string. * [ ] Use list concatenation instead of multiple `++`. * [ ] Replace function with a function provided by `elm-lang/*` or `elm-community/*`. * [ ] Magic numbers. * [x] Check for unnecessary port modules (#45)
List.concatwhen concatenating only fixed size lists.Nfields. (Record type aliases should be formatted multiline when exceeding N fields #24)Undocumented function that is exposed by module.Use point free notation where possible (\_ -> btoalways band\x -> List.map f xtoList.map f)++.elm-lang/*orelm-community/*.