Disable problematic stylelint rule

The no-invalid-position-at-import-rule requires @import statements be at
the top of the file, yet the scss compiler requires @use statements be
at the top. Can't win!
trunk
Matt Brictson 3 years ago
parent 9e54e414dd
commit 245cfe9e40
No known key found for this signature in database
GPG Key ID: 2F279EAD1F2ACFAF

@ -7,6 +7,7 @@ module.exports = {
"declaration-no-important": true,
"max-nesting-depth": 1,
"no-empty-source": null,
"no-invalid-position-at-import-rule": null,
"property-no-unknown": [
true,
{

Loading…
Cancel
Save