Add tailwindcss

This commit is contained in:
sct
2020-08-16 04:40:38 +00:00
parent a1eb9c0048
commit 2519ac86f7
9 changed files with 1094 additions and 23 deletions

18
stylelint.config.js Normal file
View File

@@ -0,0 +1,18 @@
module.exports = {
rules: {
"at-rule-no-unknown": [
true,
{
ignoreAtRules: [
"tailwind",
"apply",
"variants",
"responsive",
"screen",
],
},
],
"declaration-block-trailing-semicolon": null,
"no-descending-specificity": null,
},
};