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 7c43e7f commit 18ae8c1Copy full SHA for 18ae8c1
checkstyle/checks/Check.hx
@@ -46,12 +46,12 @@ class Check {
46
47
function isCheckSuppressed(f:Field):Bool {
48
if (f == null) return false;
49
+ if (hasSuppressWarningsMeta (f.meta)) return true;
50
return isPosSuppressed (f.pos);
51
}
52
53
function hasSuppressWarningsMeta(m:Metadata):Bool {
54
if (m == null) return false;
-
55
var search = 'checkstyle:${getModuleName ()}';
56
for (meta in m) {
57
if (meta.name != "SuppressWarnings") continue;
0 commit comments