Pattern: Use of assert !
instead of assert_not
Issue: -
This rule enforces to use assert_not
instead of assert !
.
# bad
assert !x
# good
assert_not x
Attribute | Value |
---|---|
Include | **/test/**/* |
Pattern: Use of assert !
instead of assert_not
Issue: -
This rule enforces to use assert_not
instead of assert !
.
# bad
assert !x
# good
assert_not x
Attribute | Value |
---|---|
Include | **/test/**/* |