Merge pull request #181 from IT4Change/stylelint-vue-scss-fix

fix(frontend): allow use of SCSS-@-directives in .vue files
This commit is contained in:
Bettelstab 2024-04-23 20:41:59 +02:00 committed by GitHub
commit fb1683efd0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,9 +1,9 @@
{
"extends": [
"stylelint-config-standard",
"stylelint-config-standard-scss",
"stylelint-config-recommended-vue",
"stylelint-config-recess-order",
"stylelint-config-css-modules"
"stylelint-config-standard",
"stylelint-config-standard-scss",
"stylelint-config-css-modules",
"stylelint-config-recommended-vue/scss",
"stylelint-config-recess-order"
]
}