Merge pull request #66 from kemitix/relax-rules

Relax rules
This commit is contained in:
Paul Campbell 2018-01-06 08:51:46 +00:00 committed by GitHub
commit b4900bdcfe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 7 deletions

View file

@ -101,14 +101,14 @@ rules:
name: AvoidStarImport
parent: TREEWALKER
level: LAYOUT
enabled: true
enabled: false
source: CHECKSTYLE
uri: http://checkstyle.sourceforge.net/config_imports.html#AvoidStarImport
-
name: AvoidStaticImport
parent: TREEWALKER
level: COMPLEXITY
enabled: true
enabled: false
source: CHECKSTYLE
uri: http://checkstyle.sourceforge.net/config_imports.html#AvoidStaticImport
properties:
@ -324,7 +324,7 @@ rules:
name: Header
parent: CHECKER
level: LAYOUT
enabled: true
enabled: false
source: CHECKSTYLE
uri: http://checkstyle.sourceforge.net/config_header.html#Header
properties:
@ -427,7 +427,7 @@ rules:
name: JavadocPackage
parent: CHECKER
level: JAVADOC
enabled: true
enabled: false
source: CHECKSTYLE
uri: http://checkstyle.sourceforge.net/config_javadoc.html#JavadocPackage
-
@ -451,8 +451,6 @@ rules:
enabled: true
source: CHECKSTYLE
uri: http://checkstyle.sourceforge.net/config_javadoc.html#JavadocType
properties:
authorFormat: ^.+ (\S+@[\S.]+)$
-
name: JavaNCSS
parent: TREEWALKER

View file

@ -1,2 +1,2 @@
Checks the format for Javadoc for classes and enums. Javadoc must be present, not have any unknown tags and not missing any `@param` tags. The `@author` tag must have a name and, in brackets, an email address.
Checks the format for Javadoc for classes and enums. Javadoc must be present, not have any unknown tags and not missing any `@param` tags.