mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
* 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
16 lines
371 B
JSON
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
|
|
}
|
|
}
|