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
When using the SCSS module system, you can configure namespacing using something like:
@use 'variables' as *;
Which is the equivalent of the following without the module system:
@import 'variables';
The code looked like this before beautification:
The code should have looked like this after beautification:
Should stay the same.
The code actually looked like this after beautification:
@use 'variables'as *;
The space between the module name and "as" gets erased.
OS: Windows
{ "end_with_newline": true, "max_preserve_newlines": 2, "preserve_newlines": true, "css": { "indent_size": 2, "newline_between_rules": true, "selector_separator_newline": true, "space_around_combinator": true }, "html": { "indent_size": 2, "unformatted": [], "wrap_attributes": "force-aligned" } }
The text was updated successfully, but these errors were encountered:
Possibly fixed by #2018
Sorry, something went wrong.
@mhnaeem Submit a PR with tests showing it is if fixed.
Adding regression tests for beautifier#1798
05b4d89
@bitwiseman Done!
Merge pull request #2020 from mhnaeem/regression/tests-for-space-afte…
b8507a5
…r-string-css Adding regression tests for #1798
No branches or pull requests
Description
When using the SCSS module system, you can configure namespacing using something like:
Which is the equivalent of the following without the module system:
Input
The code looked like this before beautification:
Expected Output
The code should have looked like this after beautification:
Should stay the same.
Actual Output
The code actually looked like this after beautification:
The space between the module name and "as" gets erased.
Environment
OS: Windows
Settings
The text was updated successfully, but these errors were encountered: