bookwyrm/.stylelintrc.js

18 lines
281 B
JavaScript
Raw Normal View History

/* global module */
module.exports = {
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-order"
],
"rules": {
"order/order": [
"custom-properties",
"declarations"
],
"indentation": 4
}
};