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 7380b95 commit 43e0747Copy full SHA for 43e0747
plugins/codemodder-plugin-semgrep/src/main/java/io/codemodder/providers/sarif/semgrep/SemgrepModule.java
@@ -62,7 +62,7 @@ public SemgrepModule(
62
protected boolean isResponsibleFor(final Class<? extends CodeChanger> codemod) {
63
Codemod annotation = codemod.getAnnotation(Codemod.class);
64
String id = annotation.id();
65
- return id.startsWith("semgrep:") || id.startsWith("pixee:");
+ return id.startsWith("semgrep:") || id.startsWith("pixee:") || id.startsWith("codemodder:");
66
}
67
68
@Override
0 commit comments