mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
19 lines
334 B
JavaScript
19 lines
334 B
JavaScript
module.exports = {
|
|
rules: {
|
|
"at-rule-no-unknown": [
|
|
true,
|
|
{
|
|
ignoreAtRules: [
|
|
"tailwind",
|
|
"apply",
|
|
"variants",
|
|
"responsive",
|
|
"screen",
|
|
],
|
|
},
|
|
],
|
|
"declaration-block-trailing-semicolon": null,
|
|
"no-descending-specificity": null,
|
|
},
|
|
};
|