I am using Vim with Syntastic syntax checking plugin, configured to lint scss files with default sass and scss-lint linters.
Opening css/main.scss in a Jekyll project, scss-lint returns error:
css/main.scss:5:1 [E] Syntax Error: Invalid CSS after "@charset "utf-8"": expected "{", was ";"
Removing the charset declaration results in the same error on the next line down, and so on...
Remove the Front Matter block and scss-lint no longer reports the error, but Jekyll requires an empty Front Matter block at the head of a sass file to process it and import partials and output css.
How do I configure scss-lint to ignore the Front Matter block?