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 27fb74b commit ea4a1f6Copy full SHA for ea4a1f6
src/com/magento/idea/magento2plugin/inspections/xml/PluginDeclarationInspection.java
@@ -129,6 +129,13 @@ public void visitFile(final PsiFile file) {
129
);
130
}
131
132
+ if (pluginTypeDisabledAttribute != null
133
+ && pluginTypeDisabledAttribute.getValue() != null
134
+ && pluginTypeDisabledAttribute.getValue().equals("true")
135
+ ) {
136
+ continue;
137
+ }
138
+
139
for (final Pair<String, String> moduleEntry: modulesWithSamePluginName) {
140
final String scope = moduleEntry.getFirst();
141
final String moduleName = moduleEntry.getSecond();
0 commit comments