Gets prettier command working

This commit is contained in:
Mouse Reeve
2022-02-16 12:53:18 -08:00
parent 55177990e3
commit 1412fa507c
5 changed files with 5 additions and 4 deletions

20
dev-tools/.stylelintrc.js Normal file
View File

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