package: Increase build.gradle column limit to 120 (#1261)

Even with a narrow browser, 120 characters can easily be seen without
any wrapping occurring.
This commit is contained in:
Jordan
2021-03-25 03:54:13 +00:00
committed by GitHub
parent 54b3541903
commit 490818bb0e

View File

@@ -301,12 +301,12 @@ public class Plugin implements Closeable
return 4;
}
return 1;
}).sum() > 100)
}).sum() > 120)
.findAny()
.orElse(null);
if (badLine != null)
{
throw PluginBuildException.of(this, "All gradle files must wrap at 100 characters or less")
throw PluginBuildException.of(this, "All gradle files must wrap at 120 characters or less")
.withFileLine(path.toFile(), badLine);
}
}