.stylelintrc.cjs 344 B

1234567891011
  1. module.exports = {
  2. extends: ['stylelint-config-standard'],
  3. rules: {
  4. 'selector-class-pattern': null,
  5. 'no-descending-specificity': null,
  6. 'block-no-empty': null,
  7. 'declaration-block-no-shorthand-property-overrides': null,
  8. // Seems to be broken a bit, but would be nice to have
  9. // 'declaration-property-value-no-unknown': true,
  10. },
  11. };