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
The warning appears on all function calls
deg2rad <- function(deg) { (deg * pi) / (180) } lat_1 <- deg2rad(50)
The text was updated successfully, but these errors were encountered:
It is a known problem of lintr r-lib/lintr#27
As a workaround, you could disable the object lintrr.
Sorry, something went wrong.
How can I do that?
You could either use a .lintr file to disable the object linter, or specify the following setting in .Rprofile
.lintr
.Rprofile
setHook( packageEvent("languageserver", "onLoad"), function(...) { options(languageserver.default_linters = lintr::with_defaults( object_usage_linter = NULL )) } )
No branches or pull requests
The warning appears on all function calls
The text was updated successfully, but these errors were encountered: