Skip to content

Instantly share code, notes, and snippets.

@stctheproducer
Last active November 4, 2023 06:55
Show Gist options
  • Save stctheproducer/332e1171a1f4eb6647933bc8d3f8aaf6 to your computer and use it in GitHub Desktop.
Save stctheproducer/332e1171a1f4eb6647933bc8d3f8aaf6 to your computer and use it in GitHub Desktop.
Stylelint config for Tailwind CSS
module.exports = {
extends: ['stylelint-config-recommended'],
// add your custom config here
// https://stylelint.io/user-guide/configuration
rules: {
'at-rule-no-unknown': [
true,
{
ignoreAtRules: [
'apply',
'layer',
'responsive',
'screen',
'tailwind',
'variants',
],
},
],
'declaration-block-trailing-semicolon': null,
'no-descending-specificity': null,
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment