| 1234567891011121314 |
- module.exports = {
- extends: ['stylelint-config-standard'],
- rules: {
- // 'order/properties-order': [],
- // 'at-rule-no-unknown': null,
- // 'number-leading-zero': null,
- // 'no-descending-specificity': null,
- // 'declaration-colon-newline-after': null,
- // 'font-family-no-missing-generic-family-keyword': null
- indentation: 'tab',
- 'number-leading-zero': null,
- 'no-empty-source': 0
- }
- };
|