Skip to content

Commit

Permalink
Fix style error
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeRobich committed Jun 8, 2020
1 parent f063ce8 commit ffe2fa6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Analyzers/Extensions.cs
Expand Up @@ -170,7 +170,7 @@ static DiagnosticSeverity ToSeverity(ReportDiagnostic reportDiagnostic)
var codeStyleOptions = (IEnumerable)parameters[2]!;
foreach (var codeStyleOptionObj in codeStyleOptions)
{
IOption codeStyleOption = (IOption)codeStyleOptionObj;
var codeStyleOption = (IOption)codeStyleOptionObj;
var option = options.GetOption(new OptionKey(codeStyleOption, codeStyleOption.IsPerLanguage ? compilation.Language : null));
if (option is null)
{
Expand Down
1 change: 1 addition & 0 deletions validate.rsp
@@ -1,5 +1,6 @@
./format.sln
--fix-style
--fix-analyzers
--exclude
./tests/projects/
--check
Expand Down

0 comments on commit ffe2fa6

Please sign in to comment.