1
0
Fork 0
hugo-paper/.stylelintrc.js
2021-08-24 04:07:54 +08:00

13 lines
331 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'] }]
}
};