node-red-contrib-uibuilder
Version:
Easily create data-driven web UI's for Node-RED. Single- & Multi-page. Multiple UI's. Work with existing web development workflows or mix and match with no-code/low-code features.
13 lines (12 loc) • 382 B
JavaScript
// We can now (as of v7.2.0) use all modern CSS since we build to .min.css using LightningCSS.
export default {
"plugins": [
// "stylelint-gamut"
],
"rules": {
// "gamut/color-no-out-gamut-range": true,
"function-disallowed-list": ["rgba", "hsla", "rgb", "lab"], // we want to mostly use hsl
"color-function-notation": "modern",
"color-no-hex": true
}
}