stylelint-config.js 420 B

1234567891011121314
  1. module.exports = {
  2. extends: ['stylelint-config-standard'],
  3. rules: {
  4. // 'order/properties-order': [],
  5. // 'at-rule-no-unknown': null,
  6. // 'number-leading-zero': null,
  7. // 'no-descending-specificity': null,
  8. // 'declaration-colon-newline-after': null,
  9. // 'font-family-no-missing-generic-family-keyword': null
  10. indentation: 'tab',
  11. 'number-leading-zero': null,
  12. 'no-empty-source': 0
  13. }
  14. };