Not able to disable the styelint rule "no-descending-specificity" by assigning null value within the stylelintric.json file
"rules": {
"no-descending-specificity": null
}
Instead I had to write the below line to the top of my scss file
/* stylelint-disable no-descending-specificity */
Stylint doc however allows usage of null to turn off any rule. What could be wrong here?
My eslint version is 4.19.1.