From e63f24242b0a33c17dcda470fc14f57fa99a4399 Mon Sep 17 00:00:00 2001 From: tzugen Date: Thu, 22 Apr 2021 10:27:55 +0200 Subject: [PATCH] Change detekt config: Allow TODO comments, but continue to block FIXME comments Our code still has so many TODOs that sometimes they can't be fixed immediately because the require a much larger refactor, and are also so specific that they don't warrant an own bug. --- detekt-config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/detekt-config.yml b/detekt-config.yml index bc94cdbe..b39186c0 100644 --- a/detekt-config.yml +++ b/detekt-config.yml @@ -71,7 +71,7 @@ style: active: true ForbiddenComment: active: true - values: 'TODO:,FIXME:,STOPSHIP:' + values: 'FIXME:,STOPSHIP:' WildcardImport: active: true MaxLineLength: