17 lines
413 B
JavaScript
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",
|
|
},
|
|
};
|