ui_migration lint(style) Add LINT and PURGE to CSS LESS all over WEBAPP

This commit is contained in:
Antonio Anaya 2026-05-07 00:57:11 -06:00
parent fb539e9e8e
commit 72345622e5
4 changed files with 1599 additions and 3 deletions

View file

@ -0,0 +1,23 @@
// stylelint.config.mjs
export default {
extends: ["stylelint-config-standard"],
overrides: [
{
files: ["**/*.vue"],
customSyntax: "postcss-html",
},
{
files: ["**/*.less"],
customSyntax: "postcss-less",
},
],
rules: {
// UIKit class naming doesn't match Stylelint's default class pattern
"selector-class-pattern": null,
// Less @import is fine
"no-invalid-position-at-import-rule": null,
"no-empty-source": null,
},
};