Merge pull request #812 from dlang-community/document-I-switch
Document some of the undocumented command-line switches in --help output.
This commit is contained in:
commit
04b8ed1076
|
@ -348,6 +348,11 @@ Options:
|
||||||
Prints the number of tokens in the given source files. If no files are
|
Prints the number of tokens in the given source files. If no files are
|
||||||
specified, input is read from stdin.
|
specified, input is read from stdin.
|
||||||
|
|
||||||
|
--tokenDump <file>
|
||||||
|
Dump token information from the lexer. This option is mostly useful for
|
||||||
|
developing D-Scanner or its supporting libraries itself. You probably
|
||||||
|
dont't want to use this, and this feature may be removed in the future.
|
||||||
|
|
||||||
--highlight <file>
|
--highlight <file>
|
||||||
Syntax-highlight the given source file. The resulting HTML will be
|
Syntax-highlight the given source file. The resulting HTML will be
|
||||||
written to standard output. If no file is specified, input is read
|
written to standard output. If no file is specified, input is read
|
||||||
|
@ -361,6 +366,11 @@ Options:
|
||||||
--recursiveImports <file>
|
--recursiveImports <file>
|
||||||
Similar to "--imports", but lists imports of imports recursively.
|
Similar to "--imports", but lists imports of imports recursively.
|
||||||
|
|
||||||
|
-I <directory>
|
||||||
|
Specify that the given directory should be searched for imported
|
||||||
|
modules. This option can be passed multiple times to specify multiple
|
||||||
|
directories.
|
||||||
|
|
||||||
--syntaxCheck <file>, -s <file>
|
--syntaxCheck <file>, -s <file>
|
||||||
Lexes and parses sourceFile, printing the line and column number of
|
Lexes and parses sourceFile, printing the line and column number of
|
||||||
any syntax errors to stdout. One error or warning is printed per line,
|
any syntax errors to stdout. One error or warning is printed per line,
|
||||||
|
@ -423,7 +433,8 @@ Options:
|
||||||
Generates a default configuration file for the static analysis checks,
|
Generates a default configuration file for the static analysis checks,
|
||||||
|
|
||||||
--skipTests
|
--skipTests
|
||||||
Does not analyze in the unittests. Only works if --styleCheck.`,
|
Does not analyze code in unittests. Only works if --styleCheck
|
||||||
|
is specified.`,
|
||||||
|
|
||||||
programName, defaultErrorFormat);
|
programName, defaultErrorFormat);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue