Merge pull request #281 from TouchInstinct/feat/remove-lazy_var

feat: remove lazy_var
This commit is contained in:
Loupehope 2021-09-23 19:36:56 +03:00 committed by GitHub
commit befc933117
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 6 deletions

View File

@ -266,12 +266,6 @@ custom_rules:
regex: 'case[^\n\(]+\([^\)]*(let|var)\s'
message: "Use a let|var keyword behind parentheses"
severity: warning
lazy_var:
name: "Lazy var access modifier"
regex: '(?<!private\(set\)\s)lazy\s+var'
message: "Lazy var can only be used with private(set) modifier."
severity: warning
# Rx