With skip_public rule enabled (which already is by default),
This case is detected as unused.
public extension NSParagraphStyle {
static var level1: NSParagraphStyle { ... }
}
This one is not.
extension NSParagraphStyle {
public static var level1: NSParagraphStyle { ... }
}
With
skip_publicrule enabled (which already is by default),This case is detected as unused.
This one is not.