forked from runtimeverification/haskell-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.hlint.yaml
131 lines (106 loc) · 3.77 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
# 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
# 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
# Corporate style
- ignore: {name: "Use tuple-section"}
- ignore: {name: "Use record patterns"}
- ignore: {name: "Use String"}
- ignore: {name: "Redundant id"}
# Eta reduction can impact readability significantly.
- ignore: {name: Eta reduce}
# 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.List
- Test.Kore.Builtin.Map
- Test.Kore.Builtin.Set
- Test.Kore.Internal.TermLike
- Test.Kore.Parser.Parser
- Test.Kore.Repl.Interpreter
- Test.Kore.Step.Step
- Test.Kore.Step.Substitution
# The placement of lambdas affects inlining.
- ignore: {name: Redundant lambda}
# Testing class laws
- ignore: {name: Use <$>, within: [Test.Data.Sup, Test.ListT]}
- ignore: {name: Functor law, within: [Test.Data.Sup, Test.ListT]}
- ignore: {name: Use /=, within: [Test.Data.Sup]}
- ignore: {name: "Monad law, left 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]}
# Unsuitable suggestions
- ignore:
name: "Reduce duplication"
within:
- Kore.Builtin.Builtin
- Kore.Builtin.List
- Kore.Domain.Builtin
- Kore.Exec
- Kore.Internal.Conditional
- Kore.Step.Simplification.AndTerms
- Kore.Parser.Parser
- ignore: {name: "Use fmap", within: [Kore.Step.Step]}
- ignore:
name: "Use <$>"
within:
- Kore.Parser.Parser
- Kore.Step.Step
# Haskell names match K names
- ignore:
name: "Use camelCase"
within:
- 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