csscomb.js
csscomb.js copied to clipboard
Some comments have two newlines before them and they are not tabbed like the rest.
I am using Visual Studio Code version 1.18.1 on Windows 7. In my sass files there is double newline between @import statements.
Before:
.footer__fixed {
display: flex;
// justify-content: flex-start;
justify-content: flex-end;
// justify-content: center;
align-items: center;
width: $site-width;
height: $footer-height;
margin: 0 auto;
// background: inherit; // Scroll bug fix.
// border: inherit; // Scroll bug fix.
// background: green;
}
After:
.footer__fixed {
display: flex;
// justify-content: flex-start;
justify-content: flex-end;
// justify-content: center;
align-items: center;
width: $site-width;
height: $footer-height;
margin: 0 auto;
// background: inherit; // Scroll bug fix.
// border: inherit; // Scroll bug fix.
// background: green;
}
What can I do in my config to keep it as it is on before?