Skip to content

Commit

Permalink
Fix nolint in StyleChecker (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladiwostok authored Nov 10, 2024
1 parent 6fc515b commit de100b4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/dscanner/analysis/style.d
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import std.conv : to;
import std.format : format;
import std.regex;

// TODO: Fix NoLint
extern (C++) class StyleChecker(AST) : BaseAnalyzerDmd
{
mixin AnalyzerInfo!"style_check";
Expand All @@ -31,6 +30,9 @@ extern (C++) class StyleChecker(AST) : BaseAnalyzerDmd

override void visit(AST.Module moduleNode)
{
if (shouldIgnoreDecl(moduleNode.userAttribDecl(), KEY))
return;

super.visit(moduleNode);

if (moduleNode.md is null)
Expand Down

0 comments on commit de100b4

Please sign in to comment.