Could you help me? I want to write custom rule for SwiftLint. I would like to enforce putting one blank line before and after PRAGMA MARK: //
Example:
Error case
some code\n
// MARK - Smt\n
some code\n
Right case
some code\n\n // MARK - Smt\n\n
some code\n\n
Thx in advance