hudochenkov/stylelint-order

`emptyLineBefore: "always"`,How not to have spaces in inline styles

iamobj opened this issue · 1 comments

I need the style tag to have spaces, but I don't want them in the inline style,can this be done?
eg:

<style>
  /* This is normal. */
  .a {
    margin: 0;
    width: 100px;
    
    font-size: 14px;
  }
</style>

<!-- This is not what I want. -->
<div style="margin: 0;width: 100px;
            
            font-size: 14px">
  
</div>


<!-- I hope the inline style is like this -->
<div style="margin: 0;width: 100px;font-size: 14px">
 
</div>

I see no way of achieving this. There is nothing stylelint ecosystem to know if it's inline style or <style>.