add import rule override for styles

This commit is contained in:
Vivianne Langdon 2022-03-17 00:44:16 -07:00
parent 6f27b5fd2e
commit 54b8d2c3f3

View file

@ -18,5 +18,13 @@ module.exports = {
"declaration-block-no-redundant-longhand-properties": null,
"no-descending-specificity": null,
"alpha-value-notation": null
}
},
"overrides": [
{
"files": [ "../**/themes/bookwyrm-*.scss" ],
"rules": {
"no-invalid-position-at-import-rule": null
}
}
]
};