bookwyrm-mastodon/dev-tools/.stylelintrc.js

22 lines
476 B
JavaScript
Raw Normal View History

/* global module */
module.exports = {
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-order"
],
"rules": {
"order/order": [
"custom-properties",
"declarations"
],
2022-01-07 17:08:36 -05:00
"indentation": 4,
2022-01-07 17:18:41 -05:00
"property-no-vendor-prefix": null,
"color-function-notation": null,
"declaration-block-no-redundant-longhand-properties": null,
2022-02-17 20:01:21 -05:00
"no-descending-specificity": null
}
};