Files
SwiftLint/Source/SwiftLintFramework/Rules/VariableNameMaxLengthRule.swift
T

47 lines
1.7 KiB
Swift

//
// VariableNameMaxLengthRule.swift
// SwiftLint
//
// Created by Mickaël Morier on 05/11/2015.
// Copyright © 2015 Realm. All rights reserved.
//
import SourceKittenFramework
public struct VariableNameMaxLengthRule: ASTRule, ConfigurationProviderRule {
public var configuration = RuleLevelsConfig(warning: 40, error: 60)
public init() {}
public static let description = RuleDescription(
identifier: "variable_name_max_length",
name: "Variable Name Max Length Rule",
description: "Variable name should not be too long.",
nonTriggeringExamples: [
"let myLet = 0",
"var myVar = 0",
"private let _myLet = 0"
],
triggeringExamples: [
"↓let myExtremelyVeryVeryVeryVeryVeryVeryLongLet = 0",
"↓var myExtremelyVeryVeryVeryVeryVeryVeryLongVar = 0",
"private ↓let _myExtremelyVeryVeryVeryVeryVeryVeryLongLet = 0"
]
)
public func validateFile(file: File, kind: SwiftDeclarationKind,
dictionary: [String: SourceKitRepresentable]) -> [StyleViolation] {
return file.validateVariableName(dictionary, kind: kind).map { name, offset in
let charCount = name.characters.count
for parameter in configuration.params where charCount > parameter.value {
return [StyleViolation(ruleDescription: self.dynamicType.description,
severity: parameter.severity,
location: Location(file: file, byteOffset: offset),
reason: "Variable name should be \(parameter.value) characters " +
"or less: currently \(charCount) characters")]
}
return []
} ?? []
}
}