mirror of
https://github.com/runelite/plugin-hub.git
synced 2026-04-09 17:28:05 -04:00
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:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user