Given the following in package.json
:
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"string-quotes": "single",
"block-no-empty": false,
"indentation": 2
}
}
I'm having trouble figuring out how to override block-no-empty
. If I set it to false
, I get the error:
Invalid Option: Unexpected option value "false" for rule "block-no-empty"
Am I missing some kind of override syntax?