Skip to content

Commit

Permalink
fix elm-review errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jiegillet committed Dec 9, 2023
1 parent 27dffad commit 335aa1b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Tags.elm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import Elm.Syntax.Expression exposing (Expression(..), FunctionImplementation, L
import Elm.Syntax.Module exposing (Module)
import Elm.Syntax.Node as Node exposing (Node(..))
import Elm.Syntax.Type exposing (Type)
import Elm.Syntax.TypeAnnotation exposing (TypeAnnotation(..))
import ElmSyntaxHelpers
import Json.Encode as Encode exposing (Value)
import Review.ModuleNameLookupTable as LookupTable exposing (ModuleNameLookupTable)
Expand Down Expand Up @@ -354,7 +353,7 @@ matchExpression (Node _ expression) =
Set.fromList [ "construct:set", "technique:immutable-collection", "technique:sorted-collection" ]

FunctionOrValue [ "Time" ] _ ->
Set.fromList [ "construct:date-time" ]
Set.singleton "construct:date-time"

FunctionOrValue [ "Dict" ] _ ->
Set.fromList [ "construct:dictionary", "technique:immutable-collection", "technique:sorted-collection" ]
Expand Down

0 comments on commit 335aa1b

Please sign in to comment.