-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
86 lines (86 loc) · 2.09 KB
/
settings.json
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
{
"borderColor": "#000000",
"deltaPx": 12,
"font": "Segoe UI",
"fontSize": 9,
"grid": {
"aspectRatio": 1.3333333333333333,
"cellSize": 30,
"edgeDensity": 0.5,
"rotation": 15,
"skewAngle": 60
},
"labelColor": "#ffffff",
"labelCount": 1200,
"labelLists": {
"0-9": {
"input": "0123456789",
"operation": "split",
"separator": ""
},
"0-9 a-z": {
"input": {
"0-9": 1,
"a-z": 1
},
"operation": "interleave"
},
"0-99": {
"input": ["leading digit", "0-9"],
"operation": "join",
"order": "lexical"
},
"0-999": {
"input": ["leading digit", "0-99"],
"operation": "join",
"order": "lexical"
},
"0-999 aa-zz": {
"input": {
"0-999": 1,
"aa-zz": 1
},
"operation": "interleave"
},
"a-z": {
"input": "etaoinshrdlcumwfgypbvkjxqz",
"operation": "split",
"separator": ""
},
"a-z mixed": {
"deletions": ["l"],
"input": "a-z",
"insertions": {
"l": "L"
},
"operation": "edit"
},
"a-z upper": {
"case": "upper",
"input": "a-z",
"operation": "edit"
},
"aa-zz": {
"input": ["a-z", "a-z"],
"operation": "join",
"order": "product"
},
"aaa-zzz": {
"input": ["a-z", "a-z", "a-z"],
"operation": "join",
"order": "product"
},
"default": {
"input": ["0-9 a-z", "0-999 aa-zz", "aaa-zzz"],
"operation": "union"
},
"leading digit": {
"input": "\n123456789",
"operation": "split",
"separator": ""
}
},
"labelSource": "default",
"showFrame": true,
"smallDeltaPx": 1
}