Skip to content

Commit

Permalink
Update src/Workspaces/SharedUtilitiesAndExtensions/Compiler/Core/Code…
Browse files Browse the repository at this point in the history
…Style/FadingOptions.cs

Co-authored-by: Sam Harwell <sam@tunnelvisionlabs.com>
  • Loading branch information
CyrusNajmabadi and sharwell authored Dec 19, 2024
1 parent 51465f1 commit 2c922c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ namespace Microsoft.CodeAnalysis.CodeStyle;
internal static class FadingOptions
{
public static readonly PerLanguageOption2<bool> FadeOutUnusedImports = new("dotnet_fade_out_unused_imports", defaultValue: true);
public static readonly PerLanguageOption2<bool> FadeOutUnusedMembers = new("dotnet_fade_out_unused_membesr", defaultValue: true);
public static readonly PerLanguageOption2<bool> FadeOutUnusedMembers = new("dotnet_fade_out_unused_members", defaultValue: true);
public static readonly PerLanguageOption2<bool> FadeOutUnreachableCode = new("dotnet_fade_out_unreachable_code", defaultValue: true);
}

0 comments on commit 2c922c6

Please sign in to comment.