-
Notifications
You must be signed in to change notification settings - Fork 10
/
.hlint.yaml
28 lines (27 loc) · 1.15 KB
/
.hlint.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Warnings currently triggered by your code
- ignore: {name: "Avoid lambda"} # 1 hint
- ignore: {name: "Eta reduce"} # 3 hints
- ignore: {name: "Functor law"} # 2 hints
- ignore: {name: "Monad law, right identity"} # 1 hint
- ignore: {name: "Move brackets to avoid $"} # 12 hints
- ignore: {name: "Redundant $"} # 7 hints
- ignore: {name: "Redundant <&>"} # 11 hints
- ignore: {name: "Redundant =="} # 1 hint
- ignore: {name: "Redundant bracket"} # 69 hints
- ignore: {name: "Redundant fmap"} # 1 hint
- ignore: {name: "Redundant fromInteger"} # 25 hints
- ignore: {name: "Redundant where"} # 1 hint
- ignore: {name: "Use <$>"} # 2 hints
- ignore: {name: "Use <&>"} # 6 hints
- ignore: {name: "Use >=>"} # 1 hint
- ignore: {name: "Use fewer imports"} # 3 hints
- ignore: {name: "Use first"} # 1 hint
- ignore: {name: "Use if"} # 3 hints
- ignore: {name: "Use infix"} # 6 hints
- ignore: {name: "Use lambda-case"} # 1 hint
- ignore: {name: "Use let"} # 3 hints
- ignore: {name: "Use maybe"} # 4 hints
- ignore: {name: "Use newtype instead of data"} # 4 hints
- ignore: {name: "Use section"} # 4 hints
- ignore: {name: "Use unless"} # 1 hint
- arguments: [-XTypeApplications]