We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9265587 commit 41b399bCopy full SHA for 41b399b
Src/ConfigurationReader.cs
@@ -58,7 +58,7 @@ private static void Parse(StringReader reader, Configuration config)
58
}
59
60
string lineWithoutComment = line;
61
- if (commentIndex > 0)
+ if (!Configuration.IgnoreInlineComments && commentIndex > 0)
62
{
63
lineWithoutComment = line.Remove(commentIndex).Trim(); // remove inline comment
64
0 commit comments