Stylelint: reorganize, remove stylelint-config-recommended-scss

This commit is contained in:
Alex Gleason
2020-10-11 17:48:21 -05:00
parent c52d3d1179
commit 7fbdc2227d
3 changed files with 5 additions and 13 deletions

View File

@ -1,15 +1,15 @@
{
"extends": [
"stylelint-config-standard",
"stylelint-config-recommended-scss"
],
"extends": ["stylelint-config-standard"],
"ignoreFiles": ["app/styles/reset.scss"],
"plugins": ["stylelint-scss"],
"rules": {
"at-rule-no-unknown": null,
"at-rule-empty-line-before": ["always", { "ignore": ["after-comment", "first-nested", "inside-block", "blockless-after-same-name-blockless", "blockless-after-blockless"] }],
"declaration-colon-newline-after": null,
"declaration-empty-line-before": "never",
"font-family-no-missing-generic-family-keyword": [true, { "ignoreFontFamilies": ["ForkAwesome", "OpenDyslexic", "soapbox"] }],
"no-descending-specificity": null,
"no-duplicate-selectors": null
"no-duplicate-selectors": null,
"scss/at-rule-no-unknown": true
}
}