2021-08-23 22:07:54 +02:00
|
|
|
module.exports = {
|
|
|
|
extends: [
|
|
|
|
'stylelint-config-standard',
|
|
|
|
'stylelint-config-recess-order',
|
2021-12-21 07:24:46 +01:00
|
|
|
'stylelint-config-prettier',
|
2021-08-23 22:07:54 +02:00
|
|
|
],
|
|
|
|
rules: {
|
|
|
|
'no-descending-specificity': null,
|
|
|
|
'custom-property-empty-line-before': null,
|
2021-12-21 07:24:46 +01:00
|
|
|
'rule-empty-line-before': ['always', { ignore: ['after-comment', 'first-nested'] }],
|
|
|
|
},
|
2021-08-23 22:07:54 +02:00
|
|
|
};
|