I use SASS to preprocess my CSS in Netbeans on Ubuntu. If I create CSS without any changes, I don't get any errors at all. However, I want CSS to be reduced, so I added parameters --compass --style compressedto the SASS command.
When SASS generates a mini file .css, Netbeans marks it with all kinds of errors. Basically, they say Unexpected token RBRACE found, Unexpected token NL found, Disable filtering of "Unexpected token IMPORTANT_SYM found" CSS parsing errorand Premature end of file.
Despite searching the web, I cannot determine if these are errors or warnings that I should take seriously, not to mention how to get rid of them. My web pages still display with the right styles, so maybe these are just warnings from Netbeans.
If these are just warnings that do not affect anything, how can I get rid of them? If they are factual errors, why does their SASS preprocessor generate?


source
share