Skip to content

Commit

Permalink
Relax checkstyle javadoc check for @Inject annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
pugnascotia committed Jan 28, 2021
1 parent 7c2d666 commit 4345f17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildSrc/src/main/resources/checkstyle_ide_fragment.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<property name="severity" value="warning" />
<!-- Exclude short methods from this check - we don't want to have to document getters -->
<property name="minLineCount" value="2" />
<property name="allowedAnnotations" value="Override,Before,BeforeClass,After,AfterClass" />
<property name="allowedAnnotations" value="Override,Before,BeforeClass,After,AfterClass,Inject" />
<message key="javadoc.missing" value="Public methods should be documented" />
</module>

Expand Down

0 comments on commit 4345f17

Please sign in to comment.