22 lines
503 B
JavaScript
22 lines
503 B
JavaScript
const stylelintConfig = {
|
|
extends: [
|
|
'stylelint-config-standard',
|
|
'stylelint-config-clean-order',
|
|
'stylelint-config-tailwindcss',
|
|
'stylelint-config-html',
|
|
],
|
|
rules: {
|
|
'declaration-block-no-redundant-longhand-properties': null,
|
|
'no-descending-specificity': null,
|
|
'selector-class-pattern': null,
|
|
},
|
|
'at-rule-no-unknown': [
|
|
true,
|
|
{
|
|
ignoreAtRules: ['tailwind', 'apply', 'variants', 'responsive', 'screen'],
|
|
},
|
|
],
|
|
};
|
|
|
|
export default stylelintConfig;
|