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
Consider a case where I am calling a method like this -
app.use require('connect-livereload')()
Which it converts to
app.use require('connect-livereload') () #The space is added
This is causing a linter error.
UPDATE: I found another problem.
app.locals.models ?= {}
gets automatically converted into
app.locals.models ? = {} #Added space
Which again causes lint errors
The text was updated successfully, but these errors were encountered:
I am also having this ?= to ? = error.
?=
? =
Sorry, something went wrong.
Fixes extra space error for )( and ?=
065cba0
Fixes derekchiang#4
Successfully merging a pull request may close this issue.
Consider a case where I am calling a method like this -
Which it converts to
This is causing a linter error.
UPDATE:
I found another problem.
gets automatically converted into
Which again causes lint errors
The text was updated successfully, but these errors were encountered: