mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
50 lines
1.8 KiB
Swift
50 lines
1.8 KiB
Swift
//
|
|
// EmptyParametersRule.swift
|
|
// SwiftLint
|
|
//
|
|
// Created by Marcelo Fabri on 12/11/16.
|
|
// Copyright © 2016 Realm. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import SourceKittenFramework
|
|
|
|
public struct EmptyParametersRule: Rule, ConfigurationProviderRule {
|
|
public var configuration = SeverityConfiguration(.warning)
|
|
|
|
public init() {}
|
|
|
|
public static let description = RuleDescription(
|
|
identifier: "empty_parameters",
|
|
name: "Empty Parameters",
|
|
description: "Prefer `() -> ` over `Void -> `.",
|
|
nonTriggeringExamples: [
|
|
"let abc: () -> Void = {}\n",
|
|
"func foo(completion: () -> Void)\n",
|
|
"func foo(completion: () thows -> Void)\n",
|
|
"let foo: (ConfigurationTests) -> Void throws -> Void)\n",
|
|
"let foo: (ConfigurationTests) -> Void throws -> Void)\n",
|
|
"let foo: (ConfigurationTests) ->Void throws -> Void)\n"
|
|
],
|
|
triggeringExamples: [
|
|
"let abc: ↓Void -> Void = {}\n",
|
|
"func foo(completion: ↓Void -> Void)\n",
|
|
"func foo(completion: ↓Void throws -> Void)\n",
|
|
"let foo: ↓Void -> () throws -> Void)\n"
|
|
]
|
|
)
|
|
|
|
public func validateFile(_ file: File) -> [StyleViolation] {
|
|
let kinds = SyntaxKind.commentAndStringKinds()
|
|
let pattern = "Void\\s*(throws\\s+)?->"
|
|
let excludingPattern = "->\\s*" + pattern // excludes curried functions
|
|
return file.matchPattern(pattern,
|
|
excludingSyntaxKinds: kinds,
|
|
excludingPattern: excludingPattern).map {
|
|
StyleViolation(ruleDescription: type(of: self).description,
|
|
severity: configuration.severity,
|
|
location: Location(file: file, characterOffset: $0.location))
|
|
}
|
|
}
|
|
}
|