Skip to content

Files

Latest commit

 

History

History
17 lines (10 loc) · 483 Bytes

WhileBrace.md

File metadata and controls

17 lines (10 loc) · 483 Bytes

Pattern: Missing use of braces for while

Issue: -

Description

While cannot be used in a pure-functional manner, that's why it's recommended to never omit braces according to Scala Style Guide.

Example configuration

<check enabled="true" class="org.scalastyle.scalariform.WhileBraceChecker" level="warning"/>

Further Reading