bookwyrm/.stylelintrc.js
2022-01-07 14:08:36 -08:00

21 lines
437 B
JavaScript

/* global module */
module.exports = {
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-order"
],
"rules": {
"order/order": [
"custom-properties",
"declarations"
],
"indentation": 4,
"property-no-vendor-prefix": false,
"color-function-notation": false,
"declaration-block-no-redundant-longhand-properties": false,
}
};