-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flags.js
50 lines (49 loc) · 759 Bytes
/
flags.js
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
const flags = {
contact: {
label: 'Contact',
type: 'string',
shortFlag: 'c',
isMultiple: true,
},
expires: {
label: 'Expires',
shortFlag: 'e',
},
lang: {
label: 'Preferred-Languages',
type: 'string',
shortFlag: 'l',
isMultiple: true,
},
canonical: {
label: 'Canonical',
type: 'string',
shortFlag: 'u',
isMultiple: true,
},
encryption: {
label: 'Encryption',
type: 'string',
shortFlag: 'x',
isMultiple: true,
},
ack: {
label: 'Acknowledgments',
type: 'string',
shortFlag: 'a',
isMultiple: true,
},
policy: {
label: 'Policy',
type: 'string',
shortFlag: 'p',
isMultiple: true,
},
hiring: {
label: 'Hiring',
type: 'string',
shortFlag: 'h',
isMultiple: true,
},
};
export default flags;