mirror of
https://github.com/hestiacp/hestiacp.git
synced 2025-02-06 10:24:04 +00:00
12 lines
344 B
JavaScript
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,
|
|
},
|
|
};
|