address all the swiftlint errors (#1129)

This commit is contained in:
Harrie Shin 2022-08-03 14:59:45 -07:00 коммит произвёл GitHub
Родитель cb650db09d
Коммит 020e6de76b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -1,4 +1,4 @@
whitelist_rules:
only_rules:
# Delegate protocols should be class-only so they can be weakly referenced.
- class_delegate_protocol

Просмотреть файл

@ -334,7 +334,7 @@ class AvatarDemoController: DemoTableViewController {
presence = presenceIterator.next()
}
if presence! == .none {
if presence! == .none {
presence = presenceIterator.next()
}

Просмотреть файл

@ -65,7 +65,7 @@ class BadgeLabelButton: UIButton {
private var badgeFrameOriginX: CGFloat {
let xOrigin: CGFloat = isLeftToRightUserInterfaceLayoutDirection ?
frame.size.width - contentEdgeInsets.left :
frame.size.width - contentEdgeInsets.left :
contentEdgeInsets.left
return (xOrigin - badgeWidth / 2)

Просмотреть файл

@ -137,7 +137,7 @@ open class Link: NSButton {
private let cornerRadius: CGFloat = 2
private func updateTitle() {
let titleAttributes = (isEnabled && showsUnderlineWhileMouseInside && mouseInside) ? underlinedLinkAttributes: linkAttributes
let titleAttributes = (isEnabled && showsUnderlineWhileMouseInside && mouseInside) ? underlinedLinkAttributes : linkAttributes
attributedTitle = NSAttributedString(string: title, attributes: titleAttributes)
setAccessibilityTitle(title)
}