mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-03 09:21:03 +01:00
a537de7b00
This updates several `devDependencies` to their latest versions. The deprecated `stylelint-config-wordpress` package has also been replaced with the `@wordpress/stylelint-config` package. This commit also includes several minor adjustments to `.scss` files to decrease the number of coding standards warnings produced when running `lint:scss`. See #52624. Built from https://develop.svn.wordpress.org/trunk@50972 git-svn-id: http://core.svn.wordpress.org/trunk@50581 1a063a9b-81f0-0310-95a4-ce76da25c4cd
24 lines
689 B
JSON
24 lines
689 B
JSON
{
|
|
"extends": [
|
|
"@wordpress/stylelint-config"
|
|
],
|
|
"rules": {
|
|
"indentation": "tab",
|
|
"no-duplicate-selectors": null,
|
|
"function-url-quotes": null,
|
|
"selector-attribute-quotes": null,
|
|
"declaration-block-no-duplicate-properties": null,
|
|
"function-calc-no-unspaced-operator": null,
|
|
"selector-pseudo-class-no-unknown": null,
|
|
"selector-class-pattern": null,
|
|
"font-weight-notation": null,
|
|
"selector-type-no-unknown": null,
|
|
"max-line-length": null,
|
|
"at-rule-empty-line-before": null,
|
|
"selector-pseudo-element-colon-notation": null,
|
|
"number-leading-zero": null,
|
|
"no-descending-specificity": null,
|
|
"length-zero-no-unit": [true, {"ignore": ["custom-properties"]}]
|
|
}
|
|
}
|