- Replace sidebar layout with top header design - Add product image thumbnail, badges (Active/Featured), and action buttons - Implement real-time badge toggling with inline JavaScript - Add one-active-product-per-brand validation with force-activate option - Standardize checkbox styling with DaisyUI components - Update terminology from "Default" to "Primary" for images - Add new models: ProductLine, ProductPackaging, Unit - Add product line management and image sorting - Add styling rules to CLAUDE.md for consistency 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
21 lines
444 B
JSON
21 lines
444 B
JSON
{
|
|
"extends": "stylelint-config-standard",
|
|
"plugins": [
|
|
"stylelint-no-unsupported-browser-features"
|
|
],
|
|
"rules": {
|
|
"no-descending-specificity": null,
|
|
"selector-class-pattern": null,
|
|
"custom-property-pattern": null,
|
|
"declaration-block-no-duplicate-properties": true,
|
|
"no-duplicate-selectors": true
|
|
},
|
|
"ignoreFiles": [
|
|
"**/*.js",
|
|
"**/*.php",
|
|
"node_modules/**",
|
|
"vendor/**",
|
|
"public/**"
|
|
]
|
|
}
|