Add stylelint to avoid warning on Tailwind's @rules
This commit is contained in:
13
stylelint.config.js
Normal file
13
stylelint.config.js
Normal file
@@ -0,0 +1,13 @@
|
||||
module.exports = {
|
||||
extends: ["stylelint-config-recommended"],
|
||||
rules: {
|
||||
"at-rule-no-unknown": [
|
||||
true,
|
||||
{
|
||||
ignoreAtRules: ["tailwind", "apply", "variants", "responsive", "screen"]
|
||||
}
|
||||
],
|
||||
"declaration-block-trailing-semicolon": null,
|
||||
"no-descending-specificity": null
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user