1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-06-17 10:49:59 +00:00

Add checkstyle rule to show final local variable violations as warning

This commit is contained in:
Xiang Rong Lin 2020-08-16 08:42:56 +02:00 committed by wb9688
parent 5ef407d15f
commit d306513319

View File

@ -154,6 +154,10 @@
<module name="MultipleVariableDeclarations"/>
<module name="SimplifyBooleanExpression"/>
<module name="SimplifyBooleanReturn"/>
<module name="FinalLocalVariable">
<property name="tokens" value="VARIABLE_DEF,PARAMETER_DEF"/>
<property name="validateEnhancedForLoopVariable" value="true"/>
</module>
<!-- Checks for class design -->
<!-- See https://checkstyle.org/config_design.html -->