Plex-FAWE/config/checkstyle/checkstyle-suppression.xml
Matt 96dcb95b7c
Javadoc and Formatting fixes. (#619)
Javadoc and Formatting fixes.

Also, extremely minor code changes which have been tested.
This commit is only part one of two commits that aim to fix problems with formatting in our project. In part two I will modify the Google Java Style Guide (since it closely matches our code style) for our project so there is guidance on how to format and document. 

* Updated PlotSquared URL
* Removed plugin acronyms
* Fixed a typo
* Fixed grammar
* Use modern block id's
* Update YouTube video URL
2020-10-05 13:41:41 -04:00

23 lines
1.3 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suppressions PUBLIC "-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN"
"https://checkstyle.org/dtds/suppressions_1_2.dtd">
<suppressions>
<suppress files=".*DataFixer\.java" checks="MethodName|FallThrough"/>
<suppress files=".*[\\/]MathUtils.java" checks="MethodName"/>
<suppress files=".*[\\/]bPermissionsResolver.java" checks="TypeName"/>
<!-- This thing only works via the use of a finalizer. -->
<suppress files=".*[\\/]TracedEditSession.java" checks="NoFinalizer"/>
<!-- None of the old command stuff really matters -->
<suppress files=".*[\\/]minecraft[\\/]util[\\/]commands[\\/].*\.java" checks=".*"/>
<!-- FAWE ADDITIONS -->
<suppress files=".*[\\/]MathMan.java" checks="MethodName"/>
<suppress files=".*[\\/]net[\\/]jpountz[\\/]lz4[\\/].*\.java" checks=".*"/>
<suppress files=".*[\\/]BufferedRandomAccessFile.java" checks=".*"/>
<suppress files=".*[\\/]ByteBufferUtils.java" checks="NoWhitespaceBefore"/>
<suppress files=".*[\\/]Settings.java" checks="MemberName"/>
<suppress files=".*[\\/]FaweLimit.java" checks="MemberName"/>
<suppress files=".*[\\/]SimplexNoise.java" checks="MemberName"/>
<suppress files=".*[\\/]SparseBitSet.java" checks=".*"/>
</suppressions>