.stylelintrc.js 221 B

1234567
  1. module.exports = {
  2. extends: '@wagtail/stylelint-config-wagtail',
  3. rules: {
  4. // Would be valuable for strict BEM components but is too hard to enforce with legacy code.
  5. 'no-descending-specificity': null,
  6. },
  7. };