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
There are a few more linters that would benefit from the efficiency/conciseness boost of moving to XPath:
extraction_operator_linter()
function_left_parentheses_linter()
semicolon_linter()
unneeded_concatentation_linter()
Simple script to try and detect these below
# inside R/ r_files = setdiff( list.files(), c("cyclocomp_linter.R", "line_length_linter.R", "make_linter_from_regex.R", "path_linters.R", "single_quotes_linter.R", "trailing_blank_lines_linter.R") ) for (file in r_files) { l = readLines(file) if (!any(grepl("Linter\\(function", l))) next if (!any(grepl("xml_find_all", l))) message(file) }
The text was updated successfully, but these errors were encountered:
Shall we put the 3.0.0 milestone on this? I am fine either way
Sorry, something went wrong.
No branches or pull requests
There are a few more linters that would benefit from the efficiency/conciseness boost of moving to XPath:
extraction_operator_linter()
to XPath #1260function_left_parentheses_linter()
to XPath #1266semicolon_linter()
to XPath #1268unneeded_concatentation_linter()
to XPath #1270Simple script to try and detect these below
The text was updated successfully, but these errors were encountered: