Skip to content

Commit 5045de3

Browse files
committed
Remove per-module hlint rules
1 parent 52d9a38 commit 5045de3

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/check-hlint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
pull_request:
66

77
jobs:
8-
build:
8+
run-hlint:
99
runs-on: ubuntu-latest
1010

1111
defaults:

.hlint.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
# Ignore some builtin hints
5757
# - ignore: {name: Use let}
5858
# - ignore: {name: Use const, within: SpecialModule} # Only within certain modules
59+
# - ignore: {name: Use camelCase, within: Test} # Only within certain modules
5960

6061

6162
# Define some custom infix operators

cardano-api/test/cardano-api-test/Test/Cardano/Api/Json.hs

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ import qualified Hedgehog as H
1818
import Test.Tasty (TestTree, testGroup)
1919
import Test.Tasty.Hedgehog (testProperty)
2020

21-
{- HLINT ignore "Use camelCase" -}
22-
2321
prop_json_roundtrip_alonzo_genesis :: Property
2422
prop_json_roundtrip_alonzo_genesis = H.property $ do
2523
genesis <- forAll genAlonzoGenesis

0 commit comments

Comments
 (0)