Skip to content

Commit f7d6a27

Browse files
fix(#5183): Disable WPA linting by default to prevent CI hangs
1 parent 15ccbc8 commit f7d6a27

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

  • eo-maven-plugin/src/main/java/org/eolang/maven

eo-maven-plugin/src/main/java/org/eolang/maven/MjSafe.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,10 +364,14 @@ abstract class MjSafe extends AbstractMojo {
364364

365365
/**
366366
* Whether we should lint all the sources together as package.
367+
* @todo #5183:30min Re-enable WPA linting by default once the performance
368+
* issue is fixed in the lints library. Currently disabled due to CI hangs.
369+
* The issue is being investigated in
370+
* https://github.com/objectionary/eo/pull/5184
367371
* @checkstyle MemberNameCheck (10 lines)
368372
* @checkstyle VisibilityModifierCheck (7 lines)
369373
*/
370-
@Parameter(property = "eo.lintAsPackage", required = true, defaultValue = "true")
374+
@Parameter(property = "eo.lintAsPackage", required = true, defaultValue = "false")
371375
protected boolean lintAsPackage;
372376

373377
/**

0 commit comments

Comments
 (0)