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
Have seen a few hits on implicit_assignment_linter() like:
implicit_assignment_linter()
(a <- foo(x))
Here, the lint message can mention explicitly using print() for readability rather than this shorthand.
print()
We should of course be careful not to mix this case which is similar on the parse tree:
AA && (BB <- foo(x))
The text was updated successfully, but these errors were encountered:
Agreed. Linting only a top-level parenthesis means the XPath should start with / instead of //.
/
//
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Have seen a few hits on
implicit_assignment_linter()
like:Here, the lint message can mention explicitly using
print()
for readability rather than this shorthand.We should of course be careful not to mix this case which is similar on the parse tree:
The text was updated successfully, but these errors were encountered: