mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-12 23:35:50 +00:00
18 lines
393 B
JavaScript
18 lines
393 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
extends: ["stylelint-config-standard-scss", "stylelint-config-recommended-vue"],
|
|
overrides: [
|
|
{
|
|
files: "**/*.{scss}",
|
|
customSyntax: "postcss-scss",
|
|
extends: ["stylelint-config-standard-scss"],
|
|
},
|
|
{
|
|
files: "**/*.vue",
|
|
customSyntax: "postcss-html",
|
|
extends: ["stylelint-config-recommended-vue"],
|
|
}
|
|
]
|
|
|
|
}; |