-
Notifications
You must be signed in to change notification settings - Fork 186
New issue
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
Issue325 object length linter #343
Issue325 object length linter #343
Conversation
Codecov Report
@@ Coverage Diff @@
## master #343 +/- ##
======================================
Coverage 85.6% 85.6%
======================================
Files 41 41
Lines 2132 2132
======================================
Hits 1825 1825
Misses 307 307
Continue to review full report at Codecov.
|
R/zzz.R
Outdated
@@ -94,7 +94,7 @@ default_linters <- with_defaults(default = list(), | |||
infix_spaces_linter, | |||
line_length_linter(80), | |||
no_tab_linter, | |||
object_length_linter(30), | |||
object_length_linter, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This still needs to be a call, e.g. object_length_linter()
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool. Changed
…intr into issue325-object-length-linter
Thanks! Could you add a note to NEWS.md with this change; referencing the issue number and your GitHub username, then I can merge this. |
Note added to NEWS.md. Thanks! |
Thanks! |
Made the default value of the length argument 30 (consistent across use, test, etc). This should close issue #325.