-
Notifications
You must be signed in to change notification settings - Fork 214
/
weeder.dhall
42 lines (42 loc) · 1.98 KB
/
weeder.dhall
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
{ roots =
[ "^Main\\.main\$"
, "^Restore\\.main\$"
, "^Latency\\.main\$"
, "^Paths_.*"
, "^Cardano.Startup.Windows\\..*\$"
, "^Cardano\\.CLI\\.(getDataDir|requireFilePath|stateDirOption)\$"
, "^Cardano\\.CLI\\.cmdByronWalletCreate"
, "^Cardano\\.Wallet\\.Api\\.Client\\.byron(Address|Transaction|Wallet)Client\$"
, "^Cardano\\.Wallet\\.Api\\.Link\\.(mintBurnAssets|patchSharedWallet|postExternalTransaction)\$"
, "^Cardano\\.Wallet\\.DB\\.Sqlite\\.Types\\.sqlSettings'\$"
, "^Cardano\\.Wallet\\.Logging\\.traceWithExceptT\$"
, "^Cardano\\.Wallet\\.Primitive\\.CoinSelection\\.Gen\\."
, "^Cardano\\.Wallet\\.Primitive\\.Types.\\stabilityWindow(Byron|Shelley)\$"
, "^Cardano\\.Wallet\\.Primitive\\.Types\\.UTxO\\.empty\$"
, "^Cardano\\.Wallet\\.Unsafe\\."
, "^Cardano\\.Wallet\\.Version\\.TH\\.gitRevFromGit\$"
, "^Data\\.Set\\.Strict\\.NonEmptySet\\."
, "^UnliftIO\\.Compat\\.mkRetryHandler\$"
, "^Spec\\.main\$"
, "^Test\\..*\\.spec\$"
, "^Test\\.QuickCheck\\.Extra\\.liftShrink\$"
, "^Test\\.Utils\\.Paths\\.getTestData"
, "^Cardano\\.Wallet\\.Api\\.Malformed\\."
, "^Cardano\\.Wallet\\.DB\\.StateMachine\\.showLabelledExamples\$"
, "^Cardano\\.Wallet\\.Shelley\\.Launch\\.Cluster\\.genMonetaryPolicyScript\$"
, "^Test\\.Integration\\.Faucet\\."
, "^Test\\.Integration\\.Framework\\.(TestData|DSL)\\."
, "^Cardano\\.Wallet\\.Shelley\\.nullTracers\$"
, "^Cardano\\.Wallet\\.Shelley\\.Compatibility\\.emptyGenesis\$"
, "^Cardano\\.Wallet\\.Shelley\\.Compatibility\\.interval0\$"
, "^Cardano\\.Wallet\\.Shelley\\.Compatibility\\.interval1\$"
, "^Cardano\\.Wallet\\.Shelley\\.Compatibility\\.isInternalError\$"
, "^Cardano\\.Wallet\\.Shelley\\.Compatibility\\.toCardanoHash\$"
, "^Cardano\\.Wallet\\.Shelley\\.Launch\\.Cluster\\.singleNodeParams\$"
, "^Cardano\\.Wallet\\.Shelley\\.Launch\\.Cluster\\.tokenMetadataServerFromEnv\$"
-- TODO: [ADP-919] Temporary weeder roots
, "signTransaction"
, "getSealedTxWitnesses"
]
, type-class-roots = True
}