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

Generate hlint default configuration #234

Merged
merged 1 commit into from
Apr 25, 2024
Merged
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
29 changes: 29 additions & 0 deletions .hlint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Warnings currently triggered by your code
- ignore: {name: "Avoid lambda"} # 1 hint
- ignore: {name: "Eta reduce"} # 12 hints
- ignore: {name: "Fuse foldr/map"} # 1 hint
- ignore: {name: "Move brackets to avoid $"} # 6 hints
- ignore: {name: "Redundant $"} # 32 hints
- ignore: {name: "Redundant <$>"} # 17 hints
- ignore: {name: "Redundant bracket"} # 12 hints
- ignore: {name: "Replace case with fromMaybe"} # 3 hints
- ignore: {name: "Unused LANGUAGE pragma"} # 16 hints
- ignore: {name: "Use $>"} # 2 hints
- ignore: {name: "Use <&>"} # 1 hint
- ignore: {name: "Use >=>"} # 1 hint
- ignore: {name: "Use asks"} # 5 hints
- ignore: {name: "Use camelCase"} # 2 hints
- ignore: {name: "Use const"} # 4 hints
- ignore: {name: "Use evalState"} # 2 hints
- ignore: {name: "Use fold"} # 1 hint
- ignore: {name: "Use for"} # 1 hint
- ignore: {name: "Use fromMaybe"} # 1 hint
- ignore: {name: "Use id"} # 6 hints
- ignore: {name: "Use newtype instead of data"} # 3 hints
- ignore: {name: "Use record patterns"} # 4 hints
- ignore: {name: "Use tuple-section"} # 2 hints
- ignore: {name: "Use uncurry"} # 2 hints
- ignore: {name: "Use unless"} # 3 hints
- ignore: {name: "Use unwords"} # 1 hint
- ignore: {name: "Use void"} # 5 hints
- ignore: {name: "Use when"} # 2 hints
Loading