buddypress/.stylelintrc
Mathieu Viet c3f300d1db Build tools: update CSS/SCSS linting node modules
- Update `stylelint`, `grunt-stylelint`, `stylelint-config-wordpress` to latest stable version.
- Add a specific stylelint config for BuddyPress.
- Lint some CSS/SCSS files.

PS: let's hope it will fix the Travis CI failing test!

See #8154
See #8048


git-svn-id: https://buddypress.svn.wordpress.org/trunk@12582 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
2020-03-25 16:42:16 +00:00

11 lines
323 B
Text

{
"extends": "stylelint-config-wordpress/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
}
}