Merge pull request #7 from TouchInstinct/checkstyle-upd

pad and check style update
This commit is contained in:
Gavriil 2017-02-21 13:06:05 +03:00 committed by GitHub
commit de9fdd8094
2 changed files with 20 additions and 3 deletions

View File

@ -13,6 +13,23 @@
</module>
<module name="TreeWalker">
<!-- CUSTOM CHECKS START-->
<module name="NullAnnotationsCheck"/>
<module name="CustomDeclarationOrder">
<property name="customDeclarationOrder"
value="Field(static final)
### Field(static)
### Ctor(static)
### Method(static)
### Field(.*)
### Ctor(.*)
### Method(.*)
### InnerEnum(.*)
### InnerInterface(.*)
### InnerClass(.*)"/>
</module>
<!-- CUSTOM CHECKS END-->
<module name="AbbreviationAsWordInName">
<property name="ignoreFinal" value="false"/>
<property name="allowedAbbreviationLength" value="1"/>

View File

@ -30,10 +30,10 @@ configurations {
dependencies {
pmd 'net.sourceforge.pmd:pmd-core:5.5.1'
pmd 'net.sourceforge.pmd:pmd-java:5.5.1'
pmd 'net.sourceforge.pmd:pmd-core:5.5.3'
pmd 'net.sourceforge.pmd:pmd-java:5.5.3'
checkstyle 'ru.touchin:checkstyle:7.2-fork'
checkstyle 'ru.touchin:checkstyle:7.6.2-fork'
pngtastic 'com.github.depsypher:pngtastic:1.2'
}