remove eof from elm mustache template for better code format (#879)

This commit is contained in:
William Cheng 2018-08-26 16:38:27 +08:00 committed by GitHub
parent 40d815946a
commit 4401407c7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 3 additions and 9 deletions

View File

@ -4,4 +4,4 @@
{{#allVars}}
{{^discriminatorValue}} |> {{>fieldDecoder}}
{{/discriminatorValue}}
{{/allVars}}
{{/allVars}}

View File

@ -4,4 +4,4 @@
{{#allVars}}
{{#-first}}[{{/-first}}{{^-first}},{{/-first}} {{>fieldEncoder}}
{{/allVars}}
]
]

View File

@ -1 +1 @@
3.2.0-SNAPSHOT
3.2.3-SNAPSHOT

View File

@ -44,4 +44,3 @@ apiResponseEncoder model =
, ( "message", withDefault Encode.null (map Encode.string model.message) )
]

View File

@ -41,4 +41,3 @@ categoryEncoder model =
, ( "name", withDefault Encode.null (map Encode.string model.name) )
]

View File

@ -62,7 +62,6 @@ orderEncoder model =
]
statusDecoder : Decoder Status
statusDecoder =
Decode.string

View File

@ -63,7 +63,6 @@ petEncoder model =
]
statusDecoder : Decoder Status
statusDecoder =
Decode.string

View File

@ -41,4 +41,3 @@ tagEncoder model =
, ( "name", withDefault Encode.null (map Encode.string model.name) )
]

View File

@ -59,4 +59,3 @@ userEncoder model =
, ( "userStatus", withDefault Encode.null (map Encode.int model.userStatus) )
]