iOS/Sources/App/ClientEvents/ClientEventCell.swift
Zac West 640cca884b
Add SwiftFormat to project (#1463)
Adds new fastlane lanes:
- `fastlane lint` which checks the linters
- `fastlane autocorrect` which applies the linters which can autocorrect (Rubocop, SwiftFormat)

Adds a build step to the Codegen abstract target which runs SwiftFormat in lint mode, pointing out what it's going to change when run.

Applies SwiftFormat to nearly all code -- exempts a few externally-sourced files and generated code.
2021-02-05 22:06:25 -08:00

8 lines
179 B
Swift

import UIKit
public class ClientEventCell: UITableViewCell {
@IBOutlet var titleLabel: UILabel!
@IBOutlet var typeLabel: UILabel!
@IBOutlet var dateLabel: UILabel!
}