{ "extends": ["stylelint-config-standard"], "plugins": ["stylelint-use-logical"], "rules": { "csstools/use-logical": [ "always", { "except": [ "top", "bottom", "width", "height", "min-width", "max-width", "min-height", "max-height" ] } ], "declaration-no-important": true, "at-rule-no-unknown": [ true, { "ignoreAtRules": ["tailwind", "apply", "variants", "responsive", "screen", "layer"] } ] }, "ignoreFiles": [ "dist/**", "node_modules/**", "src/routeTree.gen.ts", "**/*.gen.ts", "**/*.gen.d.ts" ] }