Files
GitHawk/Classes/Issues/Labeled/IssueLabeledCell.swift
Ryan Nystrom c23945ac7d Enable SwiftLint and fix issues (#2292)
* update swiftlint

* build with lint enabled

* fix almost all warnings

* remove wholemodule
2018-10-16 21:54:55 -04:00

28 lines
510 B
Swift

//
// IssueLabeledCell.swift
// Freetime
//
// Created by Ryan Nystrom on 6/6/17.
// Copyright © 2017 Ryan Nystrom. All rights reserved.
//
import UIKit
import SnapKit
final class IssueLabeledCell: StyledTextViewCell {
static let insets = UIEdgeInsets(
top: Styles.Sizes.inlineSpacing,
left: 0,
bottom: Styles.Sizes.inlineSpacing,
right: 0
)
// MARK: Public API
func configure(_ model: IssueLabeledModel) {
set(renderer: model.string)
}
}