Androidコード品質検査利器:コードソースからコード品質を保証する

1417 ワード

使用方法:


1、buildエンジニアリングの前にcheckstyleを使用し、pmdはコードを自動的に検査する.
2、assemble task実行後に自動的にfindbugsを走り、コードソースからコードをチェックする.
3、「ignoreFailures=false」を設定でき、エラーをチェックすると現在のbuild taskを強制的に停止し、修正してから再buildする必要があり、コード品質を強制的に保証します.ignoreFailuresの構成は「your_android_studio_project/app/doc/quality/quality.gradle'というファイルにあります.
4、無視ファイル(クランプ)をqualityに追加することができる.gradleファイルでの構成:
    exclude '**/gen/**', '**/test/**','**/LauncherActivity.java'

【Githubソースアドレス、スターとFollowを歓迎します】

Usage:


1、copy the/doc folder to your_android_studio_project/app/
2、input “apply from: ‘./doc/quality/quality.gradle’” to your build.gradle in your_android_studio_project/app.
3、run your app or gradle assembleXX,this gradle script will auto check the code quality.
4、ignore file or folder in quality.gradle:
    exclude '**/gen/**', '**/test/**','**/LauncherActivity.java'

To go further


This project is based on these two other projects, which are awesome. Consider take a look at them : - Quality-Tools-for-Android. - vb-android-app-quality.