Skip to content

Commit

Permalink
Merge pull request #128 from novuhq/feat-code-documentation
Browse files Browse the repository at this point in the history
Write Code Documentations
  • Loading branch information
unicodeveloper authored Jun 16, 2024
2 parents bff4a66 + 041110e commit d57ba06
Show file tree
Hide file tree
Showing 7 changed files with 902 additions and 176 deletions.
342 changes: 172 additions & 170 deletions README.md

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion config/checkstyle/checkstyle-suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
<suppress checks="JavadocPackage" files="."/>
<suppress checks="HideUtilityClassConstructor" files="."/>
<suppress checks="JavadocType" files="."/>
<suppress checks="JavadocMethod" files="."/>
<suppress checks="JavadocMethod" files="co[\\/]novu[\\/]api[\\/]"/>
<suppress checks="JavadocMethod" files="co[\\/]novu[\\/]common[\\/]rest[\\/]"/>
<suppress checks="MissingJavadocMethod" files="co[\\/]novu[\\/]api[\\/]"/>
<suppress checks="MissingJavadocMethod" files="co[\\/]novu[\\/]common[\\/]rest[\\/]"/>
<suppress checks="JavadocVariable" files="."/>
</suppressions>
4 changes: 3 additions & 1 deletion config/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,9 @@
<!-- Checks for Javadoc comments. -->
<!-- See https://checkstyle.org/checks/javadoc/index.html -->
<module name="InvalidJavadocPosition"/>
<module name="JavadocMethod"/>
<module name="JavadocMethod">
<property name="accessModifiers" value="public"/>
</module>
<module name="JavadocType"/>
<module name="JavadocVariable"/>
<module name="JavadocStyle"/>
Expand Down
Loading

0 comments on commit d57ba06

Please sign in to comment.