Files
Lieux-wow/.stylelintrc.js
2020-08-19 15:19:26 +03:00

17 lines
413 B
JavaScript

module.exports = {
extends: [
"stylelint-config-recommended-scss",
"stylelint-config-standard",
"stylelint-config-rational-order",
],
rules: {
indentation: 4,
"rule-empty-line-before": null,
"at-rule-empty-line-before": null,
"declaration-empty-line-before": null,
"no-descending-specificity": null,
"number-leading-zero": "never",
"string-quotes": "double",
},
};