.stylelintrc 330 B

123456789101112
  1. {
  2. 'extends': 'stylelint-config-standard',
  3. 'rules': {
  4. 'indentation': null,
  5. 'selector-pseudo-element-colon-notation': null,
  6. 'function-comma-space-after': null,
  7. 'no-descending-specificity': null,
  8. 'declaration-bang-space-before': null,
  9. 'number-leading-zero': null,
  10. 'rule-empty-line-before': null
  11. }
  12. }