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
template-indent
Sometimes you need to have a multiline string where trailing whitespaces are intentional
The plugin breaks the usecases of such strings.
const str = dedent` Line 1 with trailing spaces___ We use underscores to visualize spaces Previous line is intentionally left empty `;
The plugin converts it to
const str = dedent` Line 1 with trailing spaces We use underscores to visualize spaces Previous line is intentionally left empty `;
So the trailing spaces and blank lines are removed which breaks the usecase.
The text was updated successfully, but these errors were encountered:
recommended
Successfully merging a pull request may close this issue.
Sometimes you need to have a multiline string where trailing whitespaces are intentional
The plugin breaks the usecases of such strings.
template-indent
The plugin converts it to
So the trailing spaces and blank lines are removed which breaks the usecase.
The text was updated successfully, but these errors were encountered: