Chris2011 edited a comment on pull request #3060:
URL: https://github.com/apache/netbeans/pull/3060#issuecomment-884237257


   Thx, it is working just fine in a CSS and SCSS file, just inside of an html 
file it looks like so:
   
   Before:
   ```html
   <style>body{color:red;}</style>
   ```
   
   After:
   ```html
   <style>body{
               color:red
           }</style>
   ```
   
   But I would expect smth like this:
   ```html
   <style>
   body{
       color:red
   }
   </style>
   ```
   
   And also, no spaces where added but as you said, it is just a minimal one so 
having body{ instead of body { is better than nothing.
   
   An Idea for later because of using LSP and already node and typescript etc. 
doesn't it make sense for a later version to use things that are already there 
and where used for such things instead of using Java? Just an idea. I mean 
using prettier where you just have a config make much more sense as to create 
it again by your own.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to