.stylelintrc.json
{
"extends": "stylelint-config-recommended-scss",
"plugins": ["stylelint-scss"],
"rules": {
"no-empty-source": null,
"color-hex-length": null,
"comment-empty-line-before": null,
"color-no-invalid-hex": true,
"comment-whitespace-inside": null,
"length-zero-no-unit": null,
"unit-no-unknown": true,
"no-descending-specificity": null,
"font-family-no-missing-generic-family-keyword": null
}
}