mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
d73ee8d3d9
Also removes `missing_docs` and `valid_docs` rules. Fixes #1453.
41 lines
1.3 KiB
Swift
41 lines
1.3 KiB
Swift
//
|
|
// IdentifierNameRuleExamples.swift
|
|
// SwiftLint
|
|
//
|
|
// Created by Marcelo Fabri on 12/30/16.
|
|
// Copyright © 2016 Realm. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
internal struct IdentifierNameRuleExamples {
|
|
static let nonTriggeringExamples = [
|
|
"let myLet = 0",
|
|
"var myVar = 0",
|
|
"private let _myLet = 0",
|
|
"class Abc { static let MyLet = 0 }",
|
|
"let URL: NSURL? = nil",
|
|
"let XMLString: String? = nil",
|
|
"override var i = 0",
|
|
"enum Foo { case myEnum }",
|
|
"func isOperator(name: String) -> Bool",
|
|
"func typeForKind(_ kind: SwiftDeclarationKind) -> String",
|
|
"func == (lhs: SyntaxToken, rhs: SyntaxToken) -> Bool",
|
|
"override func IsOperator(name: String) -> Bool"
|
|
]
|
|
|
|
static let triggeringExamples = [
|
|
"↓let MyLet = 0",
|
|
"↓let _myLet = 0",
|
|
"private ↓let myLet_ = 0",
|
|
"↓let myExtremelyVeryVeryVeryVeryVeryVeryLongLet = 0",
|
|
"↓var myExtremelyVeryVeryVeryVeryVeryVeryLongVar = 0",
|
|
"private ↓let _myExtremelyVeryVeryVeryVeryVeryVeryLongLet = 0",
|
|
"↓let i = 0",
|
|
"↓var id = 0",
|
|
"private ↓let _i = 0",
|
|
"↓func IsOperator(name: String) -> Bool",
|
|
"enum Foo { case ↓MyEnum }"
|
|
]
|
|
}
|