-
-
Notifications
You must be signed in to change notification settings - Fork 764
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Document how to exclude detekt from the check task - #1894 #2144
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2144 +/- ##
============================================
+ Coverage 80.5% 80.52% +0.02%
Complexity 2017 2017
============================================
Files 336 336
Lines 5801 5808 +7
Branches 1063 1063
============================================
+ Hits 4670 4677 +7
Misses 564 564
Partials 567 567
Continue to review full report at Codecov.
|
@@ -147,6 +147,24 @@ task detektFailFast(type: io.gitlab.arturbosch.detekt.Detekt) { | |||
} | |||
``` | |||
|
|||
##### <a name="check-lifecycle">Disabling detekt from the check task</a> | |||
|
|||
detekt tasks by default are verification tasks. They get executed whenever the Gradle check task gets executed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
detekt tasks by default are verification tasks. They get executed whenever the Gradle check task gets executed. | |
Detekt tasks by default are verification tasks. They get executed whenever the Gradle check task gets executed. |
…ekt#2144) * Document how to exclude detekt from the check task - detekt#1894 * Use capital letter for detekt
…ekt#2144) * Document how to exclude detekt from the check task - detekt#1894 * Use capital letter for detekt
The groovy dsl page has more info sub sections and the kotlin dsl page points to the groovy dsl page.
So it's okay not to duplicate the info ^^