Merge pull request #16413 from nik9000/line_length_suppress

Fail build for lines longer than 140 characters
This commit is contained in:
Nik Everett 2016-02-04 16:45:54 -05:00
commit 1f5cfd0a76
2 changed files with 1708 additions and 2 deletions

View File

@ -11,11 +11,12 @@
</module> </module>
<module name="TreeWalker"> <module name="TreeWalker">
<!-- ~3500 violations <!-- Its our official line length! See checkstyle_suppressions.xml for the files that don't pass this. For now we
suppress the check there but enforce it everywhere else. This prevents the list from getting longer even if it is
unfair. -->
<module name="LineLength"> <module name="LineLength">
<property name="max" value="140"/> <property name="max" value="140"/>
</module> </module>
-->
<module name="AvoidStarImport" /> <module name="AvoidStarImport" />
<!-- Doesn't pass but we could make it pass pretty quick. <!-- Doesn't pass but we could make it pass pretty quick.

File diff suppressed because it is too large Load Diff