forked from runtimeverification/haskell-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.hlint.yaml
169 lines (140 loc) · 4.86 KB
/
.hlint.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
# HLint configuration file
# https://github.com/ndmitchell/hlint
##########################
# This file contains a template configuration file, which is typically
# placed as .hlint.yaml in the root of your project
# Specify additional command line arguments
#
# - arguments: [--color, --cpp-simple, -XQuasiQuotes]
- arguments: [-XTypeApplications]
# Control which extensions/flags/modules/functions can be used
#
# - extensions:
# - default: false # all extension are banned by default
# - name: [PatternGuards, ViewPatterns] # only these listed extensions can be used
# - {name: CPP, within: CrossPlatform} # CPP can only be used in a given module
#
# - flags:
# - {name: -w, within: []} # -w is allowed nowhere
#
# - modules:
# - {name: [Data.Set, Data.HashSet], as: Set} # if you import Data.Set qualified, it must be as 'Set'
# - {name: Control.Arrow, within: []} # Certain modules are banned entirely
#
# - functions:
# - {name: unsafePerformIO, within: []} # unsafePerformIO can only appear in no modules
- modules:
- {name: [Data.Map], within: []}
# Add custom hints for this project
#
# Will suggest replacing "wibbleMany [myvar]" with "wibbleOne myvar"
# - error: {lhs: "wibbleMany [x]", rhs: wibbleOne x}
# Turn on hints that are off by default
#
# Ban "module X(module X) where", to require a real export list
# - warn: {name: Use explicit module export list}
#
# Replace a $ b $ c with a . b $ c
# - group: {name: dollar, enabled: true}
#
# Generalise map to fmap, ++ to <>
# - group: {name: generalise, enabled: true}
# Ignore some builtin hints
# - ignore: {name: Use let}
# - ignore: {name: Use const, within: SpecialModule} # Only within certain modules
# This warning should apply to Control.Exception.evaluate, but is mistakenly
# applied to Kore.Step.SMT.Evaluator.evaluate.
- ignore: {name: "Redundant evaluate"}
# Corporate style
- ignore: {name: "Use tuple-section"}
- ignore: {name: "Use record patterns"}
- ignore: {name: "Use String"}
- ignore: {name: "Redundant id"}
# Ignore suggestions that may affect readability
- ignore: {name: "Eta reduce"}
- ignore: {name: "Avoid lambda using `infix`"}
- ignore: {name: "Use infix"}
- ignore: {name: "Use section"}
- ignore: {name: "Use <$>"}
- ignore: {name: "Redundant flip"}
- ignore: {name: "Monad law, left identity"}
- ignore: {name: "Monoid law, left identity"}
- ignore: {name: "Replace case with maybe"}
- ignore: {name: "Hoist not"}
# Permit existing duplication in tests.
# Please reflect before adding new modules to this list.
- ignore:
name: Reduce duplication
within:
- Test.Kore
- Test.Kore.AllPath
- Test.Kore.ASTVerifier.DefinitionVerifier.Imports
- Test.Kore.Builtin.Definition
- Test.Kore.Builtin.InternalBytes
- Test.Kore.Builtin.List
- Test.Kore.Builtin.Map
- Test.Kore.Builtin.Set
- Test.Kore.Exec
- Test.Kore.Internal.TermLike
- Test.Kore.Parser.Parser
- Test.Kore.Repl.Interpreter
- Test.Kore.Step.EquationalStep
- Test.Kore.Step.RewriteStep
- Test.Kore.Step.Rule.Combine
- Test.Kore.Step.Step
- Test.Kore.Step.Substitution
- Test.Kore.Strategies.AllPath.AllPath
# The placement of lambdas affects inlining.
- ignore: {name: Redundant lambda}
# Testing class laws
- ignore: {name: Functor law, within: [Test.Data.Sup, Test.ListT]}
- ignore: {name: Use /=, within: [Test.Data.Sup]}
- ignore: {name: "Alternative law, left identity", within: [Test.ListT]}
- ignore: {name: "Alternative law, right identity", within: [Test.ListT]}
- ignore: {name: "Monad law, right identity", within: [Test.ListT]}
- ignore: {name: "Use >=>", within: [Test.ListT]}
- ignore: {name: "Redundant id", within: [Test.ListT]}
- ignore:
name: Use camelCase
within:
- Test.Terse
- Test.Kore.Step.Axiom.Evaluate
- Test.Kore.Step.Axiom.Matcher
- Test.Kore.Step.Simplification.Overloading
# Unsuitable suggestions
- ignore:
name: "Reduce duplication"
within:
- Kore.Builtin.Builtin
- Kore.Builtin.List
- Kore.Builtin.Symbols
- Kore.Domain.Builtin
- Kore.Exec
- Kore.Internal.Conditional
- Kore.Step.Axiom.Matcher
- Kore.Step.Simplification.AndTerms
- Kore.Parser.Parser
- Main
- ignore:
name: "Use fmap"
within:
- Kore.Step.Step
- SQL.SOP
- ignore: {name: "Avoid lambda", within: [Kore.Step.Function.Memo]}
- ignore:
name: "Redundant bracket"
within:
- Kore.Internal.TermLike.TermLike
# Haskell names match K names
- ignore:
name: "Use camelCase"
within:
- Kore.Builtin.Map.Map
- Kore.Builtin.MapSymbols
- Kore.Debug
- ignore: {name: "Use newtype instead of data", within: [GlobalMain]}
- ignore: {name: "Redundant compare", within: [Kore.Syntax.Id]}
# Define some custom infix operators
# - fixity: infixr 3 ~^#^~
# To generate a suitable file for HLint do:
# $ hlint --default > .hlint.yaml