How to fix Line Length Violation?
Relevant part of alert message that isn\'t allowed due to Line Length Violation: message: NSLocalizedString(\"\\nYou will b
In this case just update your line_length
rule with ignores_interpolated_strings
like this:
line_length:
warning: 120
ignores_function_declarations: true
ignores_comments: true
ignores_interpolated_strings: true
ignores_urls: true
and make sure you are using last version of swiftlint
(it was added just a few weeks ago)