File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
cabal-install/src/Distribution/Client/IndexUtils Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 28
28
- ignore : {name: "Use ++"} # 4 hints
29
29
- ignore : {name: "Use :"} # 28 hints
30
30
- ignore : {name: "Use <$"} # 2 hints
31
- - ignore : {name: "Use <$>"} # 89 hints
31
+ - ignore : {name: "Use <$>"} # 87 hints
32
32
- ignore : {name: "Use <&>"} # 16 hints
33
33
- ignore : {name: "Use <=<"} # 4 hints
34
34
- ignore : {name: "Use =<<"} # 7 hints
Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ organizeByRepos (ActiveRepos xs0) sel ys0 =
179
179
go :: [a ] -> [ActiveRepoEntry ] -> [a ] -> Either String ([a ], [(a , CombineStrategy )])
180
180
go _rest [] ys = Right (ys, [] )
181
181
go rest (ActiveRepoRest s : xs) ys =
182
- go rest xs ys <&> second (map (, s) rest ++ )
182
+ go rest xs ys <&> second (map (,s) rest ++ )
183
183
go rest (ActiveRepo r s : xs) ys = do
184
184
(z, zs) <- extract r ys
185
185
go rest xs zs <&> second ((z, s) : )
You can’t perform that action at this time.
0 commit comments