initial commit
This commit is contained in:
21
stylelint.config.mjs
Normal file
21
stylelint.config.mjs
Normal file
@@ -0,0 +1,21 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user