chore(deps): update dependency stylelint-config-recommended to v7 (#6228)

This commit is contained in:
renovate[bot]
2022-03-02 17:50:16 +00:00
committed by GitHub
parent 362073616d
commit 96e3429fa2
12 changed files with 193 additions and 192 deletions

View File

@ -1,14 +1,34 @@
{
"extends": [
"stylelint-config-recommended",
],
"processors": ["stylelint-processor-styled-components"],
"extends": ["stylelint-config-standard-scss", "stylelint-config-styled-components"],
"customSyntax": "postcss-scss",
"rules": {
"block-no-empty": null,
"no-duplicate-selectors": null,
"no-empty-source": null,
"no-extra-semicolons": null,
"selector-type-no-unknown": [true, {
"ignoreTypes": ["$dummyValue"],
}],
"declaration-empty-line-before": null,
"string-quotes": null,
"selector-class-pattern": null,
"selector-pseudo-element-colon-notation": null,
"rule-empty-line-before": null,
"declaration-colon-newline-after": null,
"at-rule-empty-line-before": null,
"alpha-value-notation": null,
"color-function-notation": null,
"keyframes-name-pattern": null,
"value-list-comma-newline-after": null,
"no-descending-specificity": null,
"selector-type-no-unknown": [
true,
{
"ignoreTypes": ["$dummyValue"]
}
],
"value-keyword-case": [
"lower",
{ "ignoreKeywords": ["dummyValue"], "camelCaseSvgKeywords": true }
]
},
}
"ignoreFiles": ["packages/netlify-cms-lib-auth/index.d.ts"]
}