Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rerun hlint --default . > .hlint.yaml for up-to-date counts. #831

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 23 additions & 15 deletions .hlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,29 @@


# Warnings currently triggered by your code
- ignore: {name: "Redundant bang pattern"}
- ignore: {name: "Use camelCase"}
- ignore: {name: "Use if"}
- ignore: {name: "Use newtype instead of data"}
- ignore: {name: "Use <$>"}
- ignore: {name: "Use mapMaybe"}
- ignore: {name: "Use const"}
- ignore: {name: "Use list comprehension"}
- ignore: {name: "Redundant multi-way if"}
- ignore: {name: "Redundant lambda"}
- ignore: {name: "Avoid lambda"}
- ignore: {name: "Use uncurry"}
- ignore: {name: "Use replicateM"}
- ignore: {name: "Use unless"}
- ignore: {name: "Redundant irrefutable pattern"}
- ignore: {name: "Avoid lambda"} # 13 hints
- ignore: {name: "Avoid reverse"} # 3 hints
- ignore: {name: "Empty single-line comment"} # 1 hint
- ignore: {name: "Move brackets to avoid $"} # 17 hints
- ignore: {name: "Redundant $"} # 1 hint
- ignore: {name: "Redundant <$>"} # 1 hint
- ignore: {name: "Redundant bracket"} # 11 hints
- ignore: {name: "Redundant irrefutable pattern"} # 18 hints
- ignore: {name: "Redundant lambda"} # 4 hints
- ignore: {name: "Redundant multi-way if"} # 11 hints
- ignore: {name: "Redundant pure"} # 1 hint
- ignore: {name: "Unused LANGUAGE pragma"} # 11 hints
- ignore: {name: "Use <$>"} # 40 hints
- ignore: {name: "Use <=<"} # 1 hint
- ignore: {name: "Use camelCase"} # 8 hints
- ignore: {name: "Use const"} # 3 hints
- ignore: {name: "Use fromRight"} # 1 hint
- ignore: {name: "Use if"} # 8 hints
- ignore: {name: "Use list comprehension"} # 5 hints
- ignore: {name: "Use mapMaybe"} # 4 hints
- ignore: {name: "Use newtype instead of data"} # 27 hints
- ignore: {name: "Use uncurry"} # 1 hint
- ignore: {name: "Use unless"} # 6 hints


# Specify additional command line arguments
Expand Down