lmcarreiro / smart-column-indenter

A smart source code indenter that indent the code into columns
MIT License
18 stars 4 forks source link

Automatically breaks SCSS selectors #3

Open sandorvasas opened 6 years ago

sandorvasas commented 6 years ago

Upon saving a file containing

.SomeClass {
   & :global(.SomeGlobalClass) {
   }
}

it removes the space between the and sign and the colon, and moves it to between the colon and global, becoming&: global which results in compilation error.

Can't find a setting to disable this.