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
Follow-up from
https://github.com/AshesITR/lintr/pull/1#discussion_r820137602
is there any reason to treat <- differently than other infix operators?
<-
is it sufficient to just toggle which operators to exclude with an argument to the linter?
The text was updated successfully, but these errors were encountered:
infix_spaces_linter already triggers a lint:
infix_spaces_linter
lintr::lint("a<-1\n", lintr::infix_spaces_linter()) # <text>:1:2: style: Put spaces around all infix operators. # a<-1 # ~^~~
Sorry, something went wrong.
Turns out assignment_spaces_linter was added in this release 😅 #538
assignment_spaces_linter
Successfully merging a pull request may close this issue.
Follow-up from
https://github.com/AshesITR/lintr/pull/1#discussion_r820137602
is there any reason to treat
<-
differently than other infix operators?is it sufficient to just toggle which operators to exclude with an argument to the linter?
The text was updated successfully, but these errors were encountered: