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

Add gh-action and ignores. #98

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
24 changes: 24 additions & 0 deletions .github/workflows/hlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: hlint

on:
pull_request:
push:

jobs:
build:
name: hlint
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- uses: haskell/actions/hlint-setup@v2
name: Set up HLint
with:
version: "3.4"

- uses: haskell/actions/hlint-run@v2
name: hlint
with:
path: '["unliftio/", "unliftio-core/"]'
fail-on: suggestion
20 changes: 20 additions & 0 deletions .hlint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Warnings currently triggered by your code
- ignore: {name: "Avoid lambda"} # 2 hints
- ignore: {name: "Avoid lambda using `infix`"} # 3 hints
- ignore: {name: "Eta reduce"} # 1 hint
- ignore: {name: "Move brackets to avoid $"} # 14 hints
- ignore: {name: "Redundant bracket"} # 34 hints
- ignore: {name: "Replace case with maybe"} # 1 hint
- ignore: {name: "Unused LANGUAGE pragma"} # 12 hints
- ignore: {name: "Use <$>"} # 2 hints
- ignore: {name: "Use asum"} # 4 hints
- ignore: {name: "Use camelCase"} # 19 hints
- ignore: {name: "Use const"} # 4 hints
- ignore: {name: "Use even"} # 3 hints
- ignore: {name: "Use fewer imports"} # 1 hint
- ignore: {name: "Use fmap"} # 13 hints
- ignore: {name: "Use lambda-case"} # 1 hint
- ignore: {name: "Use newTVarIO"} # 3 hints
- ignore: {name: "Use readTVarIO"} # 8 hints
- ignore: {name: "Use void"} # 1 hint
- ignore: {name: "Use when"} # 2 hints