mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-19 09:50:29 -05:00
21 lines
603 B
JavaScript
21 lines
603 B
JavaScript
/** @type {import('stylelint').Config} */
|
|
export default {
|
|
extends: [
|
|
"stylelint-config-recommended-scss",
|
|
"stylelint-config-recommended-vue/scss"
|
|
],
|
|
plugins: [
|
|
"./plugins/lint-custom-properties.mjs",
|
|
],
|
|
rules: {
|
|
"color-no-hex": true,
|
|
"no-descending-specificity": null,
|
|
"ks/custom-property-pattern-usage": [
|
|
/(?<=ks-)/,
|
|
{
|
|
message: (prop) => `"${prop}" is not allowed. Try to use "--ks" prefixed custom properties`
|
|
}
|
|
],
|
|
"scss/no-global-function-names": null,
|
|
},
|
|
} |