mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
Convert FileLengthRule to use SwiftSyntax instead of SourceKit for improved performance and fewer false positives. The SwiftSyntax implementation: - Uses ViolationsSyntaxVisitor pattern with token traversal - Correctly handles multiline tokens by counting all spanned lines - Properly excludes comment-only and whitespace-only lines - Accurately attributes trivia to correct line positions - Extracts common line range logic to reduce code duplication