forked from enso-org/enso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.hlint.yaml
79 lines (70 loc) · 2.11 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
#####################################################################
# HLint configuration file
# https://github.com/ndmitchell/hlint
#####################################################################
#####################################################################
## DISABLED LINTS
- ignore: {name: "Parse error"}
- ignore: {name: "Redundant lambda"}
#####################################################################
## RESTRICTIONS
- extensions:
- default: false
- name: [ AllowAmbiguousTypes
, ApplicativeDo
, BangPatterns
, BinaryLiterals
, ConstraintKinds
, DataKinds
, DefaultSignatures
, DeriveDataTypeable
, DeriveFoldable
, DeriveFunctor
, DeriveGeneric
, DeriveTraversable
, DoAndIfThenElse
, DuplicateRecordFields
, EmptyDataDecls
, FlexibleContexts
, FlexibleInstances
, ForeignFunctionInterface
, FunctionalDependencies
, GeneralizedNewtypeDeriving
, InstanceSigs
, LambdaCase
, MonadComprehensions
, MonadFailDesugaring
, MultiWayIf
, NamedWildCards
, NegativeLiterals
, NoImplicitPrelude
, NumDecimals
, OverloadedLabels
, OverloadedLists
, OverloadedStrings
, PackageImports
, PolyKinds
, QuasiQuotes
, PatternSynonyms
, RankNTypes
, RecursiveDo
, ScopedTypeVariables
, StandaloneDeriving
, TemplateHaskell
, TupleSections
, TypeApplications
, TypeFamilies
, TypeFamilyDependencies
, TypeInType
, TypeOperators
, UndecidableInstances
, UnliftedFFITypes
, UnicodeSyntax
, ViewPatterns
, LiberalTypeSynonyms
, RelaxedPolyRec
]
#####################################################################
## OTHER HINTS
- group: {name: dollar, enabled: true}
- group: {name: generalise, enabled: true}