mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-22 11:07:57 +01:00
23bc6b2670
- Tweak stylesheets for compatibility with latest stylelint configuration - Move stylelint config to JS for ease of copying rules with main config - Enforce scss/no-global-function-names by refactoring code with sass-migrator - Run Sass code through sass-migrator - Change stylelint configuration and code to enforce font-family-no-missing-generic-family-keyword - Manually switch to math.div where migrator used * 0.5
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,
|
|
},
|
|
};
|