You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
For tinkering around with some of the types defined here, it could be useful to have a basic Show instance. In particular, Arg given its simplicity, and DockerTaskConfig, given that it aggregates Text and Arg values, seem not too tricky to define instances for.
Describe the solution you'd like Data.Text already has Show, so we could use that directly or perhaps wrap up, something like Arg ( ++ show a ++ ), then map that or something simple for args field of DockerTaskConfig since args :: [Arg]
Describe alternatives you've considered
N/A
Additional context
N/A
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
For tinkering around with some of the types defined here, it could be useful to have a basic
Show
instance. In particular,Arg
given its simplicity, andDockerTaskConfig
, given that it aggregatesText
andArg
values, seem not too tricky to define instances for.Describe the solution you'd like
Data.Text
already hasShow
, so we could use that directly or perhaps wrap up, something likeArg ( ++ show a ++ )
, then map that or something simple forargs
field ofDockerTaskConfig
sinceargs :: [Arg]
Describe alternatives you've considered
N/A
Additional context
N/A
The text was updated successfully, but these errors were encountered: