15
15
limitations under the License.
16
16
-->
17
17
<!DOCTYPE module PUBLIC
18
- "-//Puppy Crawl//DTD Check Configuration 1.3//EN"
19
- "http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
18
+ "-//Puppy Crawl//DTD Check Configuration 1.3//EN"
19
+ "http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
20
20
21
21
<!--
22
22
This is a checkstyle configuration file. For descriptions of
@@ -28,10 +28,6 @@ This file is based on the checkstyle file of Apache Beam.
28
28
29
29
<module name =" Checker" >
30
30
31
- <module name =" NewlineAtEndOfFile" >
32
- <!-- windows can use \r\n vs \n, so enforce the most used one ie UNIx style -->
33
- <property name =" lineSeparator" value =" lf" />
34
- </module >
35
31
36
32
<module name =" RegexpSingleline" >
37
33
<!-- Checks that TODOs don't have stuff in parenthesis, e.g., username. -->
@@ -264,16 +260,16 @@ This file is based on the checkstyle file of Apache Beam.
264
260
<!-- Checks for Javadoc comments. -->
265
261
<!-- See http://checkstyle.sf.net/config_javadoc.html -->
266
262
<module name =" JavadocMethod" >
267
- <property name =" scope " value =" protected" />
263
+ <property name =" accessModifiers " value =" protected" />
268
264
<property name =" severity" value =" error" />
269
- <property name =" allowMissingJavadoc" value =" true" />
265
+ <!-- < property name="allowMissingJavadoc" value="true"/> -- >
270
266
<property name =" allowMissingParamTags" value =" true" />
271
267
<property name =" allowMissingReturnTag" value =" true" />
272
- <property name =" allowMissingThrowsTags" value =" true" />
273
- <property name =" allowThrowsTagsForSubclasses" value =" true" />
274
- <property name =" allowUndeclaredRTE" value =" true" />
268
+ <!-- < property name="allowMissingThrowsTags" value="true"/> -- >
269
+ <!-- < property name="allowThrowsTagsForSubclasses" value="true"/> -- >
270
+ <!-- < property name="allowUndeclaredRTE" value="true"/> -- >
275
271
<!-- This check sometimes failed for with "Unable to get class information for @throws tag" for custom exceptions -->
276
- <property name =" suppressLoadErrors" value =" true" />
272
+ <!-- < property name="suppressLoadErrors" value="true"/> -- >
277
273
</module >
278
274
279
275
<!-- Check that paragraph tags are used correctly in Javadoc. -->
0 commit comments