Stylelint: stricter config, lint existing scss

This commit is contained in:
Alex Gleason
2020-10-11 16:23:19 -05:00
parent 2a4f73f999
commit 263b7ddff8
45 changed files with 262 additions and 281 deletions

View File

@ -1,14 +1,15 @@
{
"extends": "stylelint-config-recommended-scss",
"ignoreFiles": [ "app/styles/reset.scss" ],
"extends": [
"stylelint-config-standard",
"stylelint-config-recommended-scss"
],
"ignoreFiles": ["app/styles/reset.scss"],
"rules": {
"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,
"declaration-block-no-duplicate-properties": null,
"no-duplicate-selectors": null,
"font-family-no-missing-generic-family-keyword": null,
"property-no-unknown": null,
"function-calc-no-unspaced-operator": null,
"scss/at-rule-no-unknown": null,
"declaration-block-no-shorthand-property-overrides": null
"no-duplicate-selectors": null
}
}