Add checkstyle config for brace style
This commit is contained in:
+2
-1
@@ -89,7 +89,8 @@ public class ItemManager
|
|||||||
fw.println("/* This file is automatically generated. Do not edit. */");
|
fw.println("/* This file is automatically generated. Do not edit. */");
|
||||||
fw.println("package net.runelite.api;");
|
fw.println("package net.runelite.api;");
|
||||||
fw.println("");
|
fw.println("");
|
||||||
fw.println("public final class ItemID {");
|
fw.println("public final class ItemID");
|
||||||
|
fw.println("{");
|
||||||
for (ItemDefinition def : items)
|
for (ItemDefinition def : items)
|
||||||
{
|
{
|
||||||
if (def.name.equalsIgnoreCase("NULL"))
|
if (def.name.equalsIgnoreCase("NULL"))
|
||||||
|
|||||||
+2
-1
@@ -84,7 +84,8 @@ public class NpcManager
|
|||||||
fw.println("/* This file is automatically generated. Do not edit. */");
|
fw.println("/* This file is automatically generated. Do not edit. */");
|
||||||
fw.println("package net.runelite.api;");
|
fw.println("package net.runelite.api;");
|
||||||
fw.println("");
|
fw.println("");
|
||||||
fw.println("public final class NpcID {");
|
fw.println("public final class NpcID");
|
||||||
|
fw.println("{");
|
||||||
for (NpcDefinition def : npcs)
|
for (NpcDefinition def : npcs)
|
||||||
{
|
{
|
||||||
if (def.name.equalsIgnoreCase("NULL"))
|
if (def.name.equalsIgnoreCase("NULL"))
|
||||||
|
|||||||
@@ -89,7 +89,8 @@ public class ObjectManager
|
|||||||
fw.println("/* This file is automatically generated. Do not edit. */");
|
fw.println("/* This file is automatically generated. Do not edit. */");
|
||||||
fw.println("package net.runelite.api;");
|
fw.println("package net.runelite.api;");
|
||||||
fw.println("");
|
fw.println("");
|
||||||
fw.println("public final class ObjectID {");
|
fw.println("public final class ObjectID");
|
||||||
|
fw.println("{");
|
||||||
for (ObjectDefinition def : objects)
|
for (ObjectDefinition def : objects)
|
||||||
{
|
{
|
||||||
if (def.getName().equalsIgnoreCase("NULL"))
|
if (def.getName().equalsIgnoreCase("NULL"))
|
||||||
|
|||||||
@@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN"
|
||||||
|
"http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
|
||||||
|
<module name="Checker">
|
||||||
|
<module name="TreeWalker">
|
||||||
|
<module name="LeftCurly">
|
||||||
|
<property name="option" value="nl"/>
|
||||||
|
</module>
|
||||||
|
</module>
|
||||||
|
<module name="SuppressionFilter">
|
||||||
|
<property name="file" value="suppressions.xml"/>
|
||||||
|
</module>
|
||||||
|
</module>
|
||||||
@@ -40,4 +40,17 @@
|
|||||||
<groupId>net.runelite</groupId>
|
<groupId>net.runelite</groupId>
|
||||||
<artifactId>modelviewer-rsmv</artifactId>
|
<artifactId>modelviewer-rsmv</artifactId>
|
||||||
<name>Model Viewer (RSMV)</name>
|
<name>Model Viewer (RSMV)</name>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<!-- always skip checkstyle despite profile overriden checkstyle.skip property -->
|
||||||
|
<skip>true</skip>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
</project>
|
</project>
|
||||||
|
|||||||
@@ -39,6 +39,7 @@
|
|||||||
<maven.compiler.target>1.8</maven.compiler.target>
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||||||
|
|
||||||
<maven.javadoc.skip>true</maven.javadoc.skip>
|
<maven.javadoc.skip>true</maven.javadoc.skip>
|
||||||
|
<checkstyle.skip>true</checkstyle.skip>
|
||||||
|
|
||||||
<rs.version>144</rs.version>
|
<rs.version>144</rs.version>
|
||||||
</properties>
|
</properties>
|
||||||
@@ -110,6 +111,24 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>verify-style</id>
|
||||||
|
<phase>process-classes</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>check</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
<configuration>
|
||||||
|
<configLocation>checkstyle.xml</configLocation>
|
||||||
|
<!-- exclude generated sources from checkstyle https://stackoverflow.com/a/30406454/7189686 -->
|
||||||
|
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
<extensions>
|
<extensions>
|
||||||
<extension>
|
<extension>
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
/* This file is automatically generated. Do not edit. */
|
/* This file is automatically generated. Do not edit. */
|
||||||
package net.runelite.api;
|
package net.runelite.api;
|
||||||
|
|
||||||
public final class ItemID {
|
public final class ItemID
|
||||||
|
{
|
||||||
public static final int DWARF_REMAINS = 0;
|
public static final int DWARF_REMAINS = 0;
|
||||||
public static final int TOOLKIT = 1;
|
public static final int TOOLKIT = 1;
|
||||||
public static final int CANNONBALL = 2;
|
public static final int CANNONBALL = 2;
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
/* This file is automatically generated. Do not edit. */
|
/* This file is automatically generated. Do not edit. */
|
||||||
package net.runelite.api;
|
package net.runelite.api;
|
||||||
|
|
||||||
public final class NpcID {
|
public final class NpcID
|
||||||
|
{
|
||||||
public static final int TOOL_LEPRECHAUN = 0;
|
public static final int TOOL_LEPRECHAUN = 0;
|
||||||
public static final int MOLANISK = 1;
|
public static final int MOLANISK = 1;
|
||||||
public static final int ABERRANT_SPECTRE = 2;
|
public static final int ABERRANT_SPECTRE = 2;
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
/* This file is automatically generated. Do not edit. */
|
/* This file is automatically generated. Do not edit. */
|
||||||
package net.runelite.api;
|
package net.runelite.api;
|
||||||
|
|
||||||
public final class ObjectID {
|
public final class ObjectID
|
||||||
|
{
|
||||||
public static final int CRATE = 1;
|
public static final int CRATE = 1;
|
||||||
public static final int CAVE_ENTRANCE = 2;
|
public static final int CAVE_ENTRANCE = 2;
|
||||||
public static final int DOOR = 3;
|
public static final int DOOR = 3;
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!DOCTYPE suppressions PUBLIC
|
||||||
|
"-//Puppy Crawl//DTD Suppressions 1.1//EN"
|
||||||
|
"http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
|
||||||
|
<suppressions>
|
||||||
|
<suppress files="RuntimeTypeAdapterFactory\.java" checks="[a-zA-Z0-9]*"/>
|
||||||
|
</suppressions>
|
||||||
@@ -264,6 +264,7 @@ under the License.
|
|||||||
<properties>
|
<properties>
|
||||||
<runelite.tomcat.url>http://api.runelite.net/manager/text</runelite.tomcat.url>
|
<runelite.tomcat.url>http://api.runelite.net/manager/text</runelite.tomcat.url>
|
||||||
<maven.javadoc.skip>false</maven.javadoc.skip>
|
<maven.javadoc.skip>false</maven.javadoc.skip>
|
||||||
|
<checkstyle.skip>false</checkstyle.skip>
|
||||||
</properties>
|
</properties>
|
||||||
</profile>
|
</profile>
|
||||||
</profiles>
|
</profiles>
|
||||||
|
|||||||
Reference in New Issue
Block a user