mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-30 02:31:44 +00:00
Also update Checkstyle to 8.38. Google changed their style guide from the last time we imported it. This PR brings in those naming changes. The change they made is allowing single letter member, parameter, and local variable names. They also added a lambda naming scheme and I thought it would be good to bring that in too.
15 lines
607 B
XML
15 lines
607 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=".*sim.*"
|
|
checks="(LineLength|EmptyLineSeparator|ParameterName|ImportOrder|AbbreviationAsWordInName|JavadocMethod|NoFinalizer)" />
|
|
<suppress files=".*test.*"
|
|
checks="MissingJavadocMethod" />
|
|
<suppress files=".*wpilibjIntegrationTests.*"
|
|
checks="MissingJavadocMethod" />
|
|
<suppress files=".*JNI.*"
|
|
checks="(LineLength|EmptyLineSeparator|ParameterName)" />
|
|
</suppressions>
|