Skip to content

Commit

Permalink
feat: clarify option descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
gas1cent committed Jan 10, 2024
1 parent 3ce3665 commit 6ebc749
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,26 +27,26 @@ function getArguments(): Config {
.options({
base: {
type: 'string',
description: 'Directory of your root',
description: 'The target root directory',
default: './',
},
contracts: {
type: 'string',
description: 'Directory of your solidity contracts',
description: 'The directory containing your Solidity contracts',
required: true,
},
enforceInheritdoc: {
type: 'boolean',
description: 'True if natspec is written in interfaces',
description: 'When set to true, all interface methods must have natspec',
default: true,
},
constructorNatspec: {
type: 'boolean',
description: 'True if constructor natspec should be checked',
description: 'True if constructor natspec is mandatory',
default: true,
},
ignore: {
describe: 'Ignore directories',
describe: 'List of directories to exclude from processing',
default: [],
type: 'array',
string: true,
Expand Down

0 comments on commit 6ebc749

Please sign in to comment.