You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: ChangeLog.md
+2
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12
12
- Publish NuGet packages that provide [refactorings](https://www.nuget.org/packages/roslynator.refactorings) and [code fixes for compiler diagnostics](https://www.nuget.org/packages/roslynator.codefixes) ([PR](https://github.com/dotnet/roslynator/pull/1358))
13
13
- These packages are recommended to be used in an environment where Roslynator IDE extension cannot be used, e.g. VS Code + C# Dev Kit (see related [issue](https://github.com/dotnet/vscode-csharp/issues/6790))
Copy file name to clipboardexpand all lines: src/CommandLine/Options/SpellcheckCommandLineOptions.cs
+3-8
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ public sealed class SpellcheckCommandLineOptions : MSBuildCommandLineOptions
33
33
34
34
[Option(
35
35
longName:OptionNames.IgnoredScope,
36
-
HelpText="Defines syntax that should not be analyzed. Allowed values are comment, type, member, local, parameter, literal, non-symboland symbol.",
36
+
HelpText="Defines syntax that should not be analyzed. Allowed values are comment, type, member, local, parameter, literal, non-symbol, symbol and file-name.",
37
37
MetaValue="<SCOPE>")]
38
38
publicIEnumerable<string>IgnoredScope{get;set;}
39
39
@@ -60,15 +60,10 @@ public sealed class SpellcheckCommandLineOptions : MSBuildCommandLineOptions
60
60
HelpText="Specifies minimal word length to be checked. Default value is 3.",
61
61
MetaValue="<NUM>")]
62
62
publicintMinWordLength{get;set;}
63
-
#if DEBUG
64
-
[Option(
65
-
longName:OptionNames.NoAutofix,
66
-
HelpText="Disable applying predefined fixes.")]
67
-
publicboolNoAutofix{get;set;}
68
-
#endif
63
+
69
64
[Option(
70
65
longName:OptionNames.Scope,
71
-
HelpText="Defines syntax that should be analyzed. Allowed values are comment, type, member, local, parameter, literal, non-symbol, symboland all. Literals are not analyzed by default.",
66
+
HelpText="Defines syntax that should be analyzed. Allowed values are comment, type, member, local, parameter, literal, non-symbol, symbol, file-name and all. Literals and file names are not analyzed by default.",
// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
2
2
3
3
usingSystem;
4
+
usingSystem.Diagnostics;
4
5
usingSystem.Text;
5
6
usingMicrosoft.CodeAnalysis;
6
7
usingMicrosoft.CodeAnalysis.Text;
@@ -13,28 +14,39 @@ internal static class DiagnosticFormatter
0 commit comments