-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
weeder.toml
29 lines (29 loc) · 1001 Bytes
/
weeder.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
unused-types = true
type-class-roots = false
roots = [
"^Main.main$",
# Generated
"^Paths_.*",
# Exposed as a library
"^Intray.Client.",
"^Intray.API.",
]
root-instances = [
# Actual roots
## Needed for tickler but not directly for intray.
{instance = "PersistField AccessKeySecret" },
{instance = "PersistFieldSql AccessKeySecret" },
# Generated
## Database
{class = 'ToBackendKey', module = "^Intray.Cli.DB$"},
{instance = 'AtLeastOneUniqueKey .*', module = "Intray.Cli.DB"},
{instance = 'OnlyOneUniqueKey .*', module = "Intray.Cli.DB"},
{instance = '^SymbolToField .*', module = "Intray.Cli.DB"},
{instance = '^ToBackendKey .*', module = "Intray.Cli.DB"},
{instance = '^SafeToInsert .*', module = "Intray.Cli.DB"},
{instance = '^PathPiece \(Key .*\)$'},
{instance = '^ToHttpApiData \(Key .*\)$'},
{instance = '^FromHttpApiData \(Key .*\)$'},
{instance = '^PersistFieldSql \(Key .*\)$'},
{instance = '^PersistFieldSql .*$', module = "Intray.Cli.DB"},
]