forked from commercialhaskell/stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stan.toml
89 lines (75 loc) · 1.45 KB
/
.stan.toml
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
# Partial: base/!!
[[check]]
id = "STAN-0005"
scope = "all"
type = "Exclude"
# Partial: base/minimum
[[check]]
id = "STAN-0014"
scope = "all"
type = "Exclude"
# Partial: base/minimumBy
[[check]]
id = "STAN-0016"
scope = "all"
type = "Exclude"
# Partial: base/fromList
[[check]]
id = "STAN-0020"
scope = "all"
type = "Exclude"
# Infinite: base/reverse
[[check]]
id = "STAN-0101"
scope = "all"
type = "Exclude"
# Infinite: base/isSuffixOf
[[check]]
id = "STAN-0102"
scope = "all"
type = "Exclude"
# Infinite: base/length
[[check]]
id = "STAN-0103"
scope = "all"
type = "Exclude"
# Anti-pattern: foldl
[[check]]
id = "STAN-0202"
scope = "all"
type = "Exclude"
# Anti-pattern: Data.ByteString.Char8.pack
[[check]]
id = "STAN-0203"
scope = "all"
type = "Exclude"
# Data types with non-strict fields
[[check]]
id = "STAN-0206"
scope = "all"
type = "Exclude"
# Anti-pattern: Foldable methods on possibly error-prone structures
[[check]]
id = "STAN-0207"
scope = "all"
type = "Exclude"
# Anti-pattern: Slow 'length' for Text
[[check]]
id = "STAN-0208"
scope = "all"
type = "Exclude"
# Anti-pattern: unsafe functions
[[check]]
id = "STAN-0212"
scope = "all"
type = "Exclude"
# Anti-pattern: Pattern matching on '_'
[[check]]
id = "STAN-0213"
scope = "all"
type = "Exclude"
# Using tuples of big size (>= 4) can decrease code readability
[[check]]
id = "STAN-0302"
scope = "all"
type = "Exclude"