Remove unused variable in NoUnapprovedLicense

This commit is contained in:
Jeroen Engels 2020-08-11 16:58:48 +02:00
parent fa9b6d21f6
commit df8fef43e9

View File

@ -68,7 +68,7 @@ dependenciesVisitor dependencies projectContext =
elmJsonVisitor : Maybe { elmJsonKey : Rule.ElmJsonKey, project : Elm.Project.Project } -> ProjectContext -> ( List nothing, ProjectContext )
elmJsonVisitor maybeProject projectContext =
case maybeProject of
Just { elmJsonKey, project } ->
Just { elmJsonKey } ->
( [], { projectContext | elmJsonKey = Just elmJsonKey } )
Nothing ->