Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions xcode/.swiftlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,12 @@ custom_rules:
regex: '(?<!private\(set\)\s)lazy\s+var'
message: "Lazy var can only be used with private(set) modifier."
severity: warning

final_class_for_configurable:
name: "Final class for ConfigurableView and ConfigurableCell"
regex: '(?<!final\s)((class|extention)\s.*:(\s\w*,)*?\s(ConfigurableView|ConfigurableCell))'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

extension

message: "Use final class for ConfigurableView and ConfigurableCell"
severity: warning

# Rx

Expand Down