mirror of
https://github.com/YILS-LIN/short-video-factory.git
synced 2025-11-25 03:15:03 +08:00
13 lines
260 B
JavaScript
13 lines
260 B
JavaScript
module.exports = {
|
|
rules: {
|
|
'at-rule-no-unknown': [
|
|
true,
|
|
{
|
|
ignoreAtRules: ['apply', 'variants', 'responsive', 'screen'],
|
|
},
|
|
],
|
|
'declaration-block-trailing-semicolon': null,
|
|
'no-descending-specificity': null,
|
|
},
|
|
}
|