alfresco-content-app/.stylelintrc.json
AleksanderSklorz 5508ff1362
[ACA-4712] disallow using important for styles (#3368)
* ACA-4712 Added rule to prevent using important for styles

* ACA-4712 Removed important from some global styles and from manage rule component

* ACA-4712 Removed important from rest global and theme styles

* ACA-4712 Removed usages of important from styles for components
2023-07-26 09:43:14 +02:00

16 lines
371 B
JSON

{
"extends": "stylelint-config-standard-scss",
"rules": {
"color-function-notation": "legacy",
"alpha-value-notation": "number",
"function-name-case": "lower",
"selector-class-pattern": [
"^_?(adf|adf-|aca-|app|app-|cdk-||mat-|material-)",
{
"resolveNestedSelectors": true
}
],
"declaration-no-important": true
}
}