diff --git a/src/dscanner/analysis/run.d b/src/dscanner/analysis/run.d index 5bd41bf..e451b29 100644 --- a/src/dscanner/analysis/run.d +++ b/src/dscanner/analysis/run.d @@ -105,6 +105,7 @@ void messageFunctionFormat(string format, Message message, bool isError) s = s.replace("{column}", to!string(message.column)); s = s.replace("{type}", isError ? "error" : "warn"); s = s.replace("{message}", message.message); + s = s.replace("{name}", message.checkName); writefln("%s", s); } diff --git a/src/dscanner/main.d b/src/dscanner/main.d index 3d32a54..1daa1b3 100644 --- a/src/dscanner/main.d +++ b/src/dscanner/main.d @@ -376,6 +376,8 @@ Options: --errorFormat|f Format errors produced by the style/syntax checkers. The default value for the pattern is: "%2$s". + Supported placeholders are: {filepath}, {line}, {column}, {type}, + {message}, and {name}. --ctags ..., -c ... Generates ctags information from the given source code file. Note that @@ -395,7 +397,7 @@ Options: tree. If no files are specified, input is read from stdin. --declaration ..., - -d ... + -d ... Find the location where symbolName is declared. This should be more accurate than "grep". Searches the given files and directories, or the current working directory if none are specified.