|
60 | 60 |
|
61 | 61 | <!-- Checks that a package-info.java file exists for each package. --> |
62 | 62 | <!-- See https://checkstyle.org/config_javadoc.html#JavadocPackage --> |
63 | | - <module name="JavadocPackage"/> |
| 63 | + <!--<module name="JavadocPackage"/>--> |
64 | 64 |
|
65 | 65 | <!-- Checks whether files end with a new line. --> |
66 | 66 | <!-- See https://checkstyle.org/config_misc.html#NewlineAtEndOfFile --> |
|
73 | 73 | <!-- Checks for Size Violations. --> |
74 | 74 | <!-- See https://checkstyle.org/config_sizes.html --> |
75 | 75 | <module name="FileLength"/> |
76 | | - <module name="LineLength"> |
| 76 | + <!--<module name="LineLength"> |
77 | 77 | <property name="fileExtensions" value="java"/> |
78 | | - </module> |
| 78 | + </module>--> |
79 | 79 |
|
80 | 80 | <!-- Checks for whitespace --> |
81 | 81 | <!-- See https://checkstyle.org/config_whitespace.html --> |
|
182 | 182 |
|
183 | 183 | <!-- Checks for class design --> |
184 | 184 | <!-- See https://checkstyle.org/config_design.html --> |
185 | | - <module name="DesignForExtension"/> |
| 185 | + <!--<module name="DesignForExtension"/>--> |
186 | 186 | <module name="FinalClass"/> |
187 | 187 | <module name="HideUtilityClassConstructor"/> |
188 | 188 | <module name="InterfaceIsType"/> |
189 | | - <module name="VisibilityModifier"/> |
| 189 | + <module name="VisibilityModifier"> |
| 190 | + <property name="protectedAllowed" value="true"/> |
| 191 | + </module> |
190 | 192 |
|
191 | 193 | <!-- Miscellaneous other checks. --> |
192 | 194 | <!-- See https://checkstyle.org/config_misc.html --> |
|
0 commit comments