-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathargs.ts
41 lines (41 loc) · 1.52 KB
/
args.ts
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
export const allArgOptions = {
access: { type: "string" },
author: { type: "string" },
base: { type: "string" },
"create-repository": { type: "boolean" },
description: { type: "string" },
email: { type: "string" },
"email-github": { type: "string" },
"email-npm": { type: "string" },
"exclude-compliance": { type: "boolean" },
"exclude-contributors": { type: "boolean" },
"exclude-lint-deprecation": { type: "boolean" },
"exclude-lint-eslint": { type: "boolean" },
"exclude-lint-jsdoc": { type: "boolean" },
"exclude-lint-json": { type: "boolean" },
"exclude-lint-knip": { type: "boolean" },
"exclude-lint-md": { type: "boolean" },
"exclude-lint-package-json": { type: "boolean" },
"exclude-lint-packages": { type: "boolean" },
"exclude-lint-perfectionist": { type: "boolean" },
"exclude-lint-regex": { type: "boolean" },
"exclude-lint-spelling": { type: "boolean" },
"exclude-lint-strict": { type: "boolean" },
"exclude-lint-stylistic": { type: "boolean" },
"exclude-lint-yml": { type: "boolean" },
"exclude-releases": { type: "boolean" },
"exclude-renovate": { type: "boolean" },
"exclude-tests": { type: "boolean" },
funding: { type: "string" },
logo: { type: "string" },
"logo-alt": { type: "string" },
mode: { type: "string" },
owner: { type: "string" },
repository: { type: "string" },
"skip-github-api": { type: "boolean" },
"skip-install": { type: "boolean" },
"skip-removal": { type: "boolean" },
"skip-restore": { type: "boolean" },
"skip-uninstall": { type: "boolean" },
title: { type: "string" },
} as const;