Skip to content

Commit 66f831d

Browse files
committed
stylish-haskell
1 parent fca6e47 commit 66f831d

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

hls-graph/src/Development/IDE/Graph/Internal/Database.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ import Data.Traversable (for)
3333
import Data.Tuple.Extra
3434
import Debug.Trace (traceM)
3535
import Development.IDE.Graph.Classes
36+
import Development.IDE.Graph.Internal.Key
3637
import Development.IDE.Graph.Internal.Rules
3738
import Development.IDE.Graph.Internal.Types
3839
import qualified Focus
3940
import qualified ListT
4041
import qualified StmContainers.Map as SMap
4142
import System.IO.Unsafe
4243
import System.Time.Extra (duration, sleep)
43-
import Development.IDE.Graph.Internal.Key
4444

4545

4646
newDatabase :: Dynamic -> TheRules -> IO Database

hls-graph/src/Development/IDE/Graph/Internal/Key.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
{-# LANGUAGE DerivingStrategies #-}
12
{-# LANGUAGE PatternSynonyms #-}
23
{-# LANGUAGE ViewPatterns #-}
3-
{-# LANGUAGE DerivingStrategies #-}
44

55
module Development.IDE.Graph.Internal.Key
66
( Key -- Opaque - don't expose constructor, use newKey to create

hls-graph/src/Development/IDE/Graph/KeyMap.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ module Development.IDE.Graph.KeyMap(
1212
restrictKeysKeyMap,
1313
) where
1414

15-
import Development.IDE.Graph.Internal.Key
15+
import Development.IDE.Graph.Internal.Key

hls-graph/src/Development/IDE/Graph/KeySet.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ module Development.IDE.Graph.KeySet(
1313
lengthKeySet,
1414
) where
1515

16-
import Development.IDE.Graph.Internal.Key
16+
import Development.IDE.Graph.Internal.Key

hls-graph/test/DatabaseSpec.hs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
module DatabaseSpec where
44

5-
import Development.IDE.Graph (shakeOptions)
6-
import Development.IDE.Graph.Database (shakeNewDatabase,
7-
shakeRunDatabase)
5+
import Development.IDE.Graph (shakeOptions)
6+
import Development.IDE.Graph.Database (shakeNewDatabase,
7+
shakeRunDatabase)
8+
import Development.IDE.Graph.Internal.Action (apply1)
9+
import Development.IDE.Graph.Internal.Rules (addRule)
810
import Development.IDE.Graph.Internal.Types
9-
import Development.IDE.Graph.Internal.Action ( apply1 )
10-
import Development.IDE.Graph.Internal.Rules ( addRule )
1111
import Example
12-
import System.Time.Extra (timeout)
12+
import System.Time.Extra (timeout)
1313
import Test.Hspec
1414

1515
spec :: Spec

0 commit comments

Comments
 (0)