mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-22 11:07:57 +01:00
8 lines
221 B
JavaScript
8 lines
221 B
JavaScript
|
module.exports = {
|
||
|
extends: '@wagtail/stylelint-config-wagtail',
|
||
|
rules: {
|
||
|
// Would be valuable for strict BEM components but is too hard to enforce with legacy code.
|
||
|
'no-descending-specificity': null,
|
||
|
},
|
||
|
};
|