csscomb.js icon indicating copy to clipboard operation
csscomb.js copied to clipboard

Some comments have two newlines before them and they are not tabbed like the rest.

Open alexanderbaran opened this issue 7 years ago • 0 comments

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?

alexanderbaran avatar Nov 26 '17 01:11 alexanderbaran