mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
ce502db5c6
Fixing swiflint warnings Improving comma rule to support expressions that begin with the comma (fixes a gap when there are consecutive comma violations) For example, if the expression is 'let a = [1,2,3]', the previous comma rule regexp would consume '1,2' and the remaining ',3' would not be consumed by the regexp because it does not support something that begins with a comma. Updating changelog.md Improving comma rule to support expressions that begin with the comma (fixes a gap when there are consecutive comma violations)