flaw-lua/Flaw/Script/Lua.hs

Summary

Maintainability
Test Coverage

Use newtype instead of data
Open

data LuaLoadError
  = LuaLoadError !T.Text
  deriving Show
Severity: Minor
Found in flaw-lua/Flaw/Script/Lua.hs by hlint

Found

data LuaLoadError
  = LuaLoadError !T.Text
  deriving Show

Perhaps

newtype LuaLoadError
  = LuaLoadError T.Text
  deriving Show

There are no issues that match your filters.

Category
Status