Skip to content

Commit

Permalink
option description refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
duaraghav8 committed Jun 10, 2018
1 parent cc728de commit 29989a0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,14 +205,14 @@ function lint(userConfig, input, ignore, errorReporter) {
function createCliOptions(cliObject) {
cliObject
.version(`Solium version ${version}`)
.description("Style and Security checker for Solidity")
.description("Linter to find & fix style and security issues in Solidity smart contracts.")
.usage("[options] <keyword>")

.option("-i, --init", "Create default rule configuration files")
.option("-f, --file [filename]", "Solidity file to lint")
.option("-d, --dir [dirname]", "Directory containing Solidity files to lint")
.option("-R, --reporter [name]", "Format to report lint issues in (pretty | gcc)")
.option("-c, --config [path]", "Path to the .soliumrc configuration file")
.option("-f, --file [filepath::String]", "Solidity file to lint")
.option("-d, --dir [dirpath::String]", "Directory containing Solidity files to lint")
.option("-R, --reporter [name::String]", "Format to report lint issues in (pretty | gcc)")
.option("-c, --config [filepath::String]", "Path to the .soliumrc configuration file")
.option("-, --stdin", "Read input file from stdin")
.option("--fix", "Fix Lint issues where possible")
.option("--debug", "Display debug information")
Expand Down

0 comments on commit 29989a0

Please sign in to comment.