1
0
mirror of https://github.com/hestiacp/hestiacp.git synced 2025-02-06 10:24:04 +00:00
hestiacp/.stylelintrc.cjs
2023-02-10 06:25:23 +01:00

12 lines
344 B
JavaScript

module.exports = {
extends: ['stylelint-config-standard'],
rules: {
'selector-class-pattern': null,
'no-descending-specificity': null,
'block-no-empty': null,
'declaration-block-no-shorthand-property-overrides': null,
// Seems to be broken a bit, but would be nice to have
// 'declaration-property-value-no-unknown': true,
},
};