mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
Checkstyle naming conventions were changed to allow most of what's in wpimath. Naming rules were disabled completely in wpimath since almost all suppressions are for math notation.
14 lines
565 B
XML
14 lines
565 B
XML
<?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=".*test.*" checks="MissingJavadocMethod" />
|
|
<suppress files=".*wpilibjIntegrationTests.*"
|
|
checks="MissingJavadocMethod" />
|
|
<suppress files="wpimath/*"
|
|
checks="(LocalVariableName|MemberName|MethodName|MethodTypeParameterName|ParameterName)" />
|
|
<suppress files=".*JNI.*"
|
|
checks="(EmptyLineSeparator|LineLength|MissingJavadocMethod|ParameterName)" />
|
|
</suppressions>
|