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
The lint leading_newlines_in_multiline_strings Start multiline strings with a newline.
tells us to place a new line after '''
const sql = '''select * from... ''';
The fix is easy. Just insert the cursor after the first set of ''' and hit return.
The problem is the resulting indentation is:
const sql = ''' select * from... ''';
Note the two spaces before select.
select
Instead the indent should place select hard against the left hand border.
The current method results in a changing of the format of the string (it goes from having no leading spaces to having two leading spaces).
The text was updated successfully, but these errors were encountered:
6131641
No branches or pull requests
The lint
leading_newlines_in_multiline_strings Start multiline strings with a newline.
tells us to place a new line after '''
The fix is easy. Just insert the cursor after the first set of ''' and hit return.
The problem is the resulting indentation is:
Note the two spaces before
select
.Instead the indent should place
select
hard against the left hand border.The current method results in a changing of the format of the string (it goes from having no leading spaces to having two leading spaces).
The text was updated successfully, but these errors were encountered: