How to silence warning about mutableCopy?

Issue #64 new
Jouni Miettunen created an issue

Is there a way to define that I don't want to see any warnings about this kind of code:

NSMutableArray *paymentList = @[].mutableCopy;

Dot syntax usage Warns about [obj foo] or [obj setFoo:x] instead of obj.foo or obj.foo = x.

Can also be configured to enforce dot syntax only for accessors declared with the @property syntax.

Comments (0)

  1. Log in to comment