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
Since linting is possible for vignettes, it should be the default for lintr::lint_package() to also lint package vignettes.
lintr::lint_package()
This line just needs "vignettes" as an additional directory and "\\.[Rr](md|)$" as a pattern for that to work:
"vignettes"
"\\.[Rr](md|)$"
https://github.com/jimhester/lintr/blob/dbc76246c244e89f04be3031ff6db1dbe26960ac/R/lint.R#L238
The text was updated successfully, but these errors were encountered:
This seems quite reasonable, @AshesITR would you be interested in implementing this?
Sorry, something went wrong.
Sure thing 👍 I wonder if "data-raw" should also be included? That's the suggested location for data creation scripts as per Hadley.
23a6ce5
lint_package
No branches or pull requests
Since linting is possible for vignettes, it should be the default for
lintr::lint_package()
to also lint package vignettes.This line just needs
"vignettes"
as an additional directory and"\\.[Rr](md|)$"
as a pattern for that to work:https://github.com/jimhester/lintr/blob/dbc76246c244e89f04be3031ff6db1dbe26960ac/R/lint.R#L238
The text was updated successfully, but these errors were encountered: