buddypress/.stylelintrc
Mathieu Viet 381949db29 Build tools: update node modules to latest versions
The main change apart from upgrading to their latest versions node modules (except for `autoprefixer` which version 10 causes an issue with postCSS) is to stop using the deprecated `stylelint-config-wordpress` in favor of `@wordpress/stylelint-config`

Fixes #8572



git-svn-id: https://buddypress.svn.wordpress.org/trunk@13113 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
2021-09-24 01:18:04 +00:00

11 lines
324 B
Text

{
"extends": "@wordpress/stylelint-config/scss",
"rules": {
"no-descending-specificity": null,
"selector-pseudo-element-colon-notation": null,
"selector-id-pattern": null,
"selector-class-pattern": null,
"no-duplicate-selectors": null,
"font-family-no-missing-generic-family-keyword": null
}
}