* Update Stylelint and related packages * Autofix CSS files * Fix scss/no-global-function-names * Fix scss/operator-no-unspaced * Fix scss/comment-no-empty * Disable scss/at-extend-no-missing-placeholder * Update libraries for loading sass * Fix Rollup not emitting the CSS for the components package to the right place * Add plugin to re-add stylistic Stylelint rules * Actually import Stylelint plugin
29 строки
731 B
JSON
29 строки
731 B
JSON
{
|
|
"extends": [
|
|
"stylelint-config-idiomatic-order",
|
|
"stylelint-config-recommended-scss"
|
|
],
|
|
"plugins": [
|
|
"@stylistic/stylelint-plugin"
|
|
],
|
|
"rules": {
|
|
"@stylistic/indentation": 4,
|
|
"no-descending-specificity": null,
|
|
"font-family-no-missing-generic-family-keyword": null,
|
|
"property-no-unknown": [
|
|
true,
|
|
{
|
|
"ignoreProperties": ["scrollbar-3dlight-color"]
|
|
}
|
|
],
|
|
"block-no-empty": [
|
|
true,
|
|
{
|
|
"ignore": ["comments"]
|
|
}
|
|
],
|
|
"scss/load-no-partial-leading-underscore": null,
|
|
"scss/at-extend-no-missing-placeholder": null
|
|
}
|
|
}
|