Skip to content

Commit df666d7

Browse files
committed
Remove periods (.) from command descriptions
1 parent 436d72c commit df666d7

10 files changed

+10
-10
lines changed

src/commands/manifest/cmd-manifest-gradle.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ describe('socket manifest gradle', async () => {
3131
--help Print this help
3232
--out Path of output file; where to store the resulting manifest, see also --stdout
3333
--stdout Print resulting pom.xml to stdout (supersedes --out)
34-
--task Task to target. By default targets all.
34+
--task Task to target. By default targets all
3535
--verbose Print debug messages
3636
3737
Uses gradle, preferably through your local project \`gradlew\`, to generate a

src/commands/manifest/cmd-manifest-gradle.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const config: CliCommandConfig = {
4747
task: {
4848
type: 'string',
4949
default: 'all',
50-
description: 'Task to target. By default targets all.'
50+
description: 'Task to target. By default targets all'
5151
},
5252
verbose: {
5353
type: 'boolean',

src/commands/manifest/cmd-manifest-kotlin.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ describe('socket manifest kotlin', async () => {
3131
--help Print this help
3232
--out Path of output file; where to store the resulting manifest, see also --stdout
3333
--stdout Print resulting pom.xml to stdout (supersedes --out)
34-
--task Task to target. By default targets all.
34+
--task Task to target. By default targets all
3535
--verbose Print debug messages
3636
3737
Uses gradle, preferably through your local project \`gradlew\`, to generate a

src/commands/manifest/cmd-manifest-kotlin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const config: CliCommandConfig = {
5252
task: {
5353
type: 'string',
5454
default: 'all',
55-
description: 'Task to target. By default targets all.'
55+
description: 'Task to target. By default targets all'
5656
},
5757
verbose: {
5858
type: 'boolean',

src/commands/organization/cmd-organization-policy-license.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe('socket organization policy license', async () => {
1818
const { code, stderr, stdout } = await invokeNpm(entryPath, cmd)
1919
expect(stdout).toMatchInlineSnapshot(
2020
`
21-
"Retrieve the license policy of an organization.
21+
"Retrieve the license policy of an organization
2222
2323
Usage
2424
$ socket organization policy license <org slug>

src/commands/organization/cmd-organization-policy-license.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const { DRY_RUN_BAIL_TEXT } = constants
1616
// TODO: secret toplevel alias `socket license policy`?
1717
const config: CliCommandConfig = {
1818
commandName: 'license',
19-
description: 'Retrieve the license policy of an organization.',
19+
description: 'Retrieve the license policy of an organization',
2020
hidden: true,
2121
flags: {
2222
...commonFlags,

src/commands/organization/cmd-organization-policy-security.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe('socket organization policy security', async () => {
1818
const { code, stderr, stdout } = await invokeNpm(entryPath, cmd)
1919
expect(stdout).toMatchInlineSnapshot(
2020
`
21-
"Retrieve the security policy of an organization.
21+
"Retrieve the security policy of an organization
2222
2323
Usage
2424
$ socket organization policy security <org slug>

src/commands/organization/cmd-organization-policy-security.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const { DRY_RUN_BAIL_TEXT } = constants
1616
// TODO: secret toplevel alias `socket security policy`?
1717
const config: CliCommandConfig = {
1818
commandName: 'security',
19-
description: 'Retrieve the security policy of an organization.',
19+
description: 'Retrieve the security policy of an organization',
2020
hidden: true,
2121
flags: {
2222
...commonFlags,

src/commands/threat-feed/cmd-threat-feed.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ describe('socket threat-feed', async () => {
2727
sales@socket.dev if you are interested in purchasing this access.
2828
2929
Options
30-
--direction Order asc or desc by the createdAt attribute.
30+
--direction Order asc or desc by the createdAt attribute
3131
--dryRun Do input validation for a command and exit 0 when input is ok
3232
--eco Only show threats for a particular ecosystem
3333
--filter Filter what type of threats to return

src/commands/threat-feed/cmd-threat-feed.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const config: CliCommandConfig = {
3636
type: 'string',
3737
shortFlag: 'd',
3838
default: 'desc',
39-
description: 'Order asc or desc by the createdAt attribute.'
39+
description: 'Order asc or desc by the createdAt attribute'
4040
},
4141
eco: {
4242
type: 'string',

0 commit comments

Comments
 (0)