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 b7c20e4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Analyzers/AnalyzerFinderHelpers.cs
@@ -1,4 +1,4 @@
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information.
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information.

using System.Collections.Generic;
using System.Collections.Immutable;
Expand Down
2 changes: 1 addition & 1 deletion src/Analyzers/AnalyzerReferenceAnalyzerFinder.cs
@@ -1,4 +1,4 @@
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information.
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information.

using System.Collections.Generic;
using System.Collections.Immutable;
Expand Down
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 b7c20e4

Please sign in to comment.