moviewyrm/dev-tools/.stylelintrc.js

23 lines
514 B
JavaScript
Raw Permalink Normal View History

/* 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,
"no-descending-specificity": null,
"alpha-value-notation": null
}
};