2021-03-31 14:15:30 +00:00
|
|
|
/* global module */
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
"extends": "stylelint-config-standard",
|
|
|
|
|
|
|
|
"plugins": [
|
|
|
|
"stylelint-order"
|
|
|
|
],
|
|
|
|
|
|
|
|
"rules": {
|
|
|
|
"order/order": [
|
|
|
|
"custom-properties",
|
|
|
|
"declarations"
|
|
|
|
],
|
2022-01-07 22:08:36 +00:00
|
|
|
"indentation": 4,
|
2022-01-07 22:18:41 +00:00
|
|
|
"property-no-vendor-prefix": null,
|
|
|
|
"color-function-notation": null,
|
|
|
|
"declaration-block-no-redundant-longhand-properties": null,
|
2021-03-31 14:15:30 +00:00
|
|
|
}
|
|
|
|
};
|