Skip to main content

Stylelint

If you are using stylelint you may wish to extend our base configuration:

module.exports = {
extends: [
'@roots/bud-wordpress-preset/stylelint'],
};

This is especially true if you are using the @roots/bud-sass/stylelint configuration, which conflicts with the WordPress standard naming scheme for css variables.

module.exports = {
extends: [
'@roots/bud-stylelint/config',
'@roots/bud-sass/stylelint',
'@roots/bud-wordpress-preset/stylelint'
]
}