14 lines
332 B
JavaScript
14 lines
332 B
JavaScript
const stylelintConfig = {
|
|
extends: [
|
|
'stylelint-config-standard',
|
|
'stylelint-config-clean-order',
|
|
'stylelint-config-html',
|
|
],
|
|
rules: {
|
|
'declaration-block-no-redundant-longhand-properties': null,
|
|
'no-descemdomg-specificity': null,
|
|
'selector-class-pattern': null,
|
|
},
|
|
'at-rule-no-unknown': [true],
|
|
};
|