Skip to content

Commit

Permalink
Merge branch 'main' into users/ednakamu/fixing-title-max-length
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelcfanning authored Feb 24, 2021
2 parents e525272 + 8c08327 commit 2a4a6b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Sarif.Driver/Sdk/AnalyzeOptionsBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,14 @@ public abstract class AnalyzeOptionsBase : CommonOptionsBase
"level",
Separator = ';',
Default = new FailureLevel[] { FailureLevel.Error, FailureLevel.Warning },
HelpText = "Filter output of scan results to one or more failure levels. Valid values: Error, Warning and Note.")]
HelpText = "A semicolon delimited list to filter output of scan results to one or more failure levels. Valid values: Error, Warning and Note.")]
public IEnumerable<FailureLevel> Level { get; set; }

[Option(
"kind",
Separator = ';',
Default = new ResultKind[] { ResultKind.Fail },
HelpText = "Filter output one or more result kinds. Valid values: Fail (for literal scan results), Pass, Review, Open, NotApplicable and Informational.")]
HelpText = "A semicolon delimited list to filter output to one or more result kinds. Valid values: Fail (for literal scan results), Pass, Review, Open, NotApplicable and Informational.")]
public IEnumerable<ResultKind> Kind { get; set; }
}
}

0 comments on commit 2a4a6b0

Please sign in to comment.