aelve / guide

A workspace for research teams
https://guide.aelve.com
106 stars 10 forks source link

Fix some lints #141

Closed AaronFriel closed 7 years ago

AaronFriel commented 7 years ago

These just make hlint and ghc-mod happier. There was a lint I did not change (redundant typeclass) which shows up on a -Wall.

AaronFriel commented 7 years ago

It appears the language pragma issue is this: https://github.com/ndmitchell/hlint/issues/125

{-# LANGUAGE
  OverloadedStrings,
  ScopedTypeVariables,
  TypeFamilies,
  DataKinds,
  FlexibleContexts
  #-}

Parsed fine.

neongreen commented 7 years ago