-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.tbls-sf-cli-meta.toml
More file actions
55 lines (42 loc) · 1.26 KB
/
Copy path.tbls-sf-cli-meta.toml
File metadata and controls
55 lines (42 loc) · 1.26 KB
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
# tbls-sf-cli-meta driver config
# -------------------------------------------------------------
# If you want only the label name to appear in the comment column of a table column, set to true.
suppressFieldDescription = false
# Filter tables.
# If the `include` key is present, it restricts the table to only those specified.
# Then, if the `exclude` key is present, it excludes the specified tables.
# The `include` and `exclude` keys are applied in that order.
# The wildcard `*` can be used to match multiple characters.
include = [
'*__c',
'*__mdt',
'Account',
'Contact*',
]
exclude = [
'Baz__*',
]
# -------------------------------------------------------------
# Escapes markdown special characters with a backslash. e.g. `*` -> '\*'
# `def` is an object or array of objects such as `tables` or `columns` in the schema.
# `prop` is a property of an object such as `name` or `type`.
# 1. both `def` and `prop` match
# 2. `prop` matches and `def` is an empty string
# 3. `def` matches and `prop` is an empty string
# 4. both `def` and `prop` are empty strings
[[escape]]
def = ''
prop = ''
char = '$'
[[escape]]
def = ''
prop = 'extra_def'
char = '$[~'
[[escape]]
def = 'tables'
prop = ''
char = '$['
[[escape]]
def = 'tables'
prop = 'comment'
char = '$[*'