mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
c66c5c8df0
found running `swiftlint autocorrect --format`
85 lines
3.1 KiB
Swift
85 lines
3.1 KiB
Swift
//
|
|
// StatementPositionRule.swift
|
|
// SwiftLint
|
|
//
|
|
// Created by Alex Culeva on 10/22/15.
|
|
// Copyright © 2015 Realm. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import SourceKittenFramework
|
|
|
|
public struct StatementPositionRule: CorrectableRule, ConfigurationProviderRule {
|
|
|
|
public var configuration = SeverityConfiguration(.Warning)
|
|
|
|
public init() {}
|
|
|
|
public static let description = RuleDescription(
|
|
identifier: "statement_position",
|
|
name: "Statement Position",
|
|
description: "Else and catch should be on the same line, one space after the previous " +
|
|
"declaration.",
|
|
nonTriggeringExamples: [
|
|
"} else if {",
|
|
"} else {",
|
|
"} catch {",
|
|
"\"}else{\"",
|
|
"struct A { let catchphrase: Int }\nlet a = A(\n catchphrase: 0\n)",
|
|
"struct A { let `catch`: Int }\nlet a = A(\n `catch`: 0\n)"
|
|
],
|
|
triggeringExamples: [
|
|
"↓}else if {",
|
|
"↓} else {",
|
|
"↓}\ncatch {",
|
|
"↓}\n\t catch {"
|
|
],
|
|
corrections: [
|
|
"}\n else {\n": "} else {\n",
|
|
"}\n else if {\n": "} else if {\n",
|
|
"}\n catch {\n": "} catch {\n"
|
|
]
|
|
)
|
|
|
|
public func validateFile(file: File) -> [StyleViolation] {
|
|
return violationRangesInFile(file, withPattern: pattern).flatMap { range in
|
|
return StyleViolation(ruleDescription: self.dynamicType.description,
|
|
severity: configuration.severity,
|
|
location: Location(file: file, characterOffset: range.location))
|
|
}
|
|
}
|
|
|
|
public func correctFile(file: File) -> [Correction] {
|
|
let matches = violationRangesInFile(file, withPattern: pattern)
|
|
guard !matches.isEmpty else { return [] }
|
|
|
|
let regularExpression = regex(pattern)
|
|
let description = self.dynamicType.description
|
|
var corrections = [Correction]()
|
|
var contents = file.contents
|
|
for range in matches.reverse() {
|
|
contents = regularExpression.stringByReplacingMatchesInString(contents,
|
|
options: [],
|
|
range: range,
|
|
withTemplate: "} $1")
|
|
let location = Location(file: file, characterOffset: range.location)
|
|
corrections.append(Correction(ruleDescription: description, location: location))
|
|
}
|
|
file.write(contents)
|
|
return corrections
|
|
}
|
|
|
|
// MARK: - Private
|
|
|
|
// match literal '}'
|
|
// followed by 1) nothing, 2) two+ whitespace/newlines or 3) newlines or tabs
|
|
// followed by 'else' or 'catch' literals
|
|
private let pattern = "\\}(?:[\\s\\n\\r]{2,}|[\\n\\t\\r]+)?\\b(else|catch)\\b"
|
|
|
|
private func violationRangesInFile(file: File, withPattern pattern: String) -> [NSRange] {
|
|
return file.matchPattern(pattern).filter { range, syntaxKinds in
|
|
return syntaxKinds.startsWith([.Keyword])
|
|
}.flatMap { $0.0 }
|
|
}
|
|
}
|