Skip to content

Commit 55fa641

Browse files
committed
Update hlint counts
1 parent 2d01eb4 commit 55fa641

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.hlint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
- ignore: {name: "Use ++"} # 4 hints
2929
- ignore: {name: "Use :"} # 28 hints
3030
- ignore: {name: "Use <$"} # 2 hints
31-
- ignore: {name: "Use <$>"} # 89 hints
31+
- ignore: {name: "Use <$>"} # 87 hints
3232
- ignore: {name: "Use <&>"} # 16 hints
3333
- ignore: {name: "Use <=<"} # 4 hints
3434
- ignore: {name: "Use =<<"} # 7 hints

cabal-install/src/Distribution/Client/IndexUtils/ActiveRepos.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ organizeByRepos (ActiveRepos xs0) sel ys0 =
179179
go :: [a] -> [ActiveRepoEntry] -> [a] -> Either String ([a], [(a, CombineStrategy)])
180180
go _rest [] ys = Right (ys, [])
181181
go rest (ActiveRepoRest s : xs) ys =
182-
go rest xs ys <&> second (map (, s) rest ++)
182+
go rest xs ys <&> second (map (,s) rest ++)
183183
go rest (ActiveRepo r s : xs) ys = do
184184
(z, zs) <- extract r ys
185185
go rest xs zs <&> second ((z, s) :)

0 commit comments

Comments
 (0)