mirror of
https://github.com/mudita/mudita-center.git
synced 2025-12-23 22:28:03 -05:00
9 lines
225 B
JavaScript
9 lines
225 B
JavaScript
module.exports = {
|
|
extends: "@mudita/stylelint-config",
|
|
rules: {
|
|
"no-descending-specificity": null,
|
|
"value-no-vendor-prefix": null,
|
|
"selector-type-no-unknown": [true, { ignoreTypes: ["$dummyValue"] }],
|
|
},
|
|
}
|