mirror of
https://github.com/directus/directus.git
synced 2026-01-29 09:28:06 -05:00
* working on story with reactive subtitle * styling of icons seems consistent with default sizing * checkbox in list story * colors * lines and tests * merge conflict * basically im a genius styling is cool now * Update src/components/v-button/readme.md * Fix scoping of nav mode * Tweak spacing of icons * Register list item subcomponents globally * Render icons in sidebar nav of collections module Co-authored-by: Rijk van Zanten <rijkvanzanten@me.com>
31 lines
611 B
JSON
31 lines
611 B
JSON
{
|
|
"extends": [
|
|
"stylelint-config-standard",
|
|
"stylelint-config-rational-order",
|
|
"stylelint-config-prettier"
|
|
],
|
|
"plugins": ["stylelint-order", "stylelint-scss"],
|
|
"rules": {
|
|
"indentation": "tab",
|
|
"order/order": [
|
|
"dollar-variables",
|
|
"custom-properties",
|
|
"declarations",
|
|
"at-variables",
|
|
"rules",
|
|
"at-rules"
|
|
],
|
|
"at-rule-no-unknown": null,
|
|
"scss/at-rule-no-unknown": true,
|
|
"selector-pseudo-element-no-unknown": [
|
|
true,
|
|
{
|
|
"ignorePseudoElements": ["v-deep"]
|
|
}
|
|
],
|
|
"string-quotes": "single",
|
|
"length-zero-no-unit": null,
|
|
"no-descending-specificity": true
|
|
}
|
|
}
|