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