disable the oclint InvertedLogic rule

This commit is contained in:
Kurtis Rader 2016-05-22 20:21:04 -07:00
parent 2606cfe72d
commit 49d9883b3e

View file

@ -36,3 +36,8 @@ disable-rules:
# a lot of really annoying warnings, we're going to disable this rule.
#
- ShortVariableName
#
# This rule flags perfectly reasonable conditions like `if (!some_condition)`
# and is therefore just noise. Disable this rule.
#
- InvertedLogic