File tree 2 files changed +9
-1
lines changed 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 16
16
# applied to Kore.Rewrite.SMT.Evaluator.evaluate.
17
17
- ignore : {name: "Redundant evaluate"}
18
18
19
+ # This warning should apply to Data.NonEmpty.unzip but is mistakenly
20
+ # applied to Data.List.unzip
21
+ - ignore : {name: "Avoid NonEmpty.unzip", within: [Booster.Pattern.Rewrite]}
22
+
19
23
# Corporate style
20
24
- ignore : {name: "Move brackets to avoid $" }
21
25
- ignore : {name: "Use tuple-section"}
94
98
name : " Redundant bracket"
95
99
within :
96
100
- Kore.Internal.TermLike.TermLike
101
+ # decreases readability
102
+ - ignore : {name: "Functor law"}
103
+ - ignore : {name: "Move filter"}
104
+ - ignore : {name: "Move mapMaybe"}
97
105
98
106
99
107
# Haskell names match K names
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
set -euxo pipefail
3
- expected_hlint_version=v3.6.1
3
+ expected_hlint_version=v3.8
4
4
hlint=${HLINT:- $(which hlint)} || { echo ' No hlint!' ; exit 1 ; }
5
5
hlint_version=$( ${hlint} --version | head -n1 | cut --field=1 --delimiter=' ,' | cut --field=2 --delimiter=' ' )
6
6
[[ ${hlint_version} == ${expected_hlint_version} ]] || { echo " Unexpected hlint version, got ${hlint_version} , expected ${expected_hlint_version} " ; exit 1 ; }
You can’t perform that action at this time.
0 commit comments