1
0
Fork 0
hugo-paper/.stylelintrc.js
2021-12-21 14:24:46 +08:00

13 lines
334 B
JavaScript

module.exports = {
extends: [
'stylelint-config-standard',
'stylelint-config-recess-order',
'stylelint-config-prettier',
],
rules: {
'no-descending-specificity': null,
'custom-property-empty-line-before': null,
'rule-empty-line-before': ['always', { ignore: ['after-comment', 'first-nested'] }],
},
};