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.
This commit is contained in:
parent
5f8e3ce851
commit
e63f24242b
|
@ -71,7 +71,7 @@ style:
|
|||
active: true
|
||||
ForbiddenComment:
|
||||
active: true
|
||||
values: 'TODO:,FIXME:,STOPSHIP:'
|
||||
values: 'FIXME:,STOPSHIP:'
|
||||
WildcardImport:
|
||||
active: true
|
||||
MaxLineLength:
|
||||
|
|
Loading…
Reference in New Issue