We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enabling weak_delegate swiftlint rule exposes a few places where delegate types are strongly referenced, which cause retain cycles.
weak_delegate
diff --git a/.swiftlint.yml b/.swiftlint.yml index 51ba0c206a..778047ace9 100644 --- a/.swiftlint.yml +++ b/.swiftlint.yml @@ -3,6 +3,10 @@ remote_timeout: 10.0 opt_in_rules: - overridden_super_call + - weak_delegate overridden_super_call: severity: error + +weak_delegate: + severity: warning
The text was updated successfully, but these errors were encountered:
crazytonyli
Successfully merging a pull request may close this issue.
Enabling
weak_delegate
swiftlint rule exposes a few places where delegate types are strongly referenced, which cause retain cycles.The text was updated successfully, but these errors were encountered: