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
One last new error discovered by #1304 -- usage like that here:
https://github.com/rexyai/RestRserve/blob/852785a6bfa1c6691de520bd14d1246619436419/.lintr#L1-L11
linters: with_defaults( assignment_linter = RestRserve:::assignment_eq_linter, infix_spaces_linter, commas_linter, no_tab_linter, spaces_inside_linter, spaces_left_parentheses_linter, trailing_blank_lines_linter, trailing_whitespace_linter, line_length_linter(120), default = NULL)
results in an error on main:
main
lintr::lint_package() Error in modify_defaults(..., defaults = defaults) : `defaults` must be a named list. In addition: Warning message: Function with_defaults was deprecated in lintr version 2.0.9001. Use linters_with_defaults instead.
We should soften this to be a deprecation warning instead & support the intended usage (which should be the same as default = list())
default = list()
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
One last new error discovered by #1304 -- usage like that here:
https://github.com/rexyai/RestRserve/blob/852785a6bfa1c6691de520bd14d1246619436419/.lintr#L1-L11
results in an error on
main
:We should soften this to be a deprecation warning instead & support the intended usage (which should be the same as
default = list()
)The text was updated successfully, but these errors were encountered: