forked from realm/SwiftLint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImplicitReturnRule.swift
85 lines (73 loc) · 3.14 KB
/
ImplicitReturnRule.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
//
// ImplicitReturnRule.swift
// SwiftLint
//
// Created by Marcelo Fabri on 04/30/17.
// Copyright © 2017 Realm. All rights reserved.
//
import Foundation
import SourceKittenFramework
public struct ImplicitReturnRule: ConfigurationProviderRule, CorrectableRule, OptInRule {
public var configuration = SeverityConfiguration(.warning)
public init() {}
public static let description = RuleDescription(
identifier: "implicit_return",
name: "Implicit Return",
description: "Prefer implicit returns in closures.",
kind: .style,
nonTriggeringExamples: [
"foo.map { $0 + 1 }",
"foo.map({ $0 + 1 })",
"foo.map { value in value + 1 }",
"func foo() -> Int {\n return 0\n}",
"if foo {\n return 0\n}",
"var foo: Bool { return true }"
],
triggeringExamples: [
"foo.map { value in\n ↓return value + 1\n}",
"foo.map {\n ↓return $0 + 1\n}"
],
corrections: [
"foo.map { value in\n ↓return value + 1\n}": "foo.map { value in\n value + 1\n}",
"foo.map {\n ↓return $0 + 1\n}": "foo.map {\n $0 + 1\n}"
]
)
public func validate(file: File) -> [StyleViolation] {
return violationRanges(in: file).flatMap {
StyleViolation(ruleDescription: type(of: self).description,
severity: configuration.severity,
location: Location(file: file, characterOffset: $0.location))
}
}
public func correct(file: File) -> [Correction] {
let violatingRanges = file.ruleEnabled(violatingRanges: self.violationRanges(in: file), for: self)
var correctedContents = file.contents
var adjustedLocations = [Int]()
for violatingRange in violatingRanges.reversed() {
if let indexRange = correctedContents.nsrangeToIndexRange(violatingRange) {
correctedContents = correctedContents.replacingCharacters(in: indexRange, with: "")
adjustedLocations.insert(violatingRange.location, at: 0)
}
}
file.write(correctedContents)
return adjustedLocations.map {
Correction(ruleDescription: type(of: self).description,
location: Location(file: file, characterOffset: $0))
}
}
private func violationRanges(in file: File) -> [NSRange] {
let pattern = "(?:\\bin|\\{)\\s+(return\\s+)"
let contents = file.contents.bridge()
return file.matchesAndSyntaxKinds(matching: pattern).flatMap { result, kinds in
let range = result.range
guard kinds == [.keyword, .keyword] || kinds == [.keyword],
let byteRange = contents.NSRangeToByteRange(start: range.location,
length: range.length),
let outerKind = file.structure.kinds(forByteOffset: byteRange.location).last,
SwiftExpressionKind(rawValue: outerKind.kind) == .call else {
return nil
}
return result.range(at: 1)
}
}
}