protocol/.stylelintrc.json

38 строки
1.1 KiB
JSON

{
"extends": "stylelint-config-standard-scss",
"rules": {
"declaration-empty-line-before": "never",
"declaration-no-important": true,
"color-function-notation": "legacy",
"alpha-value-notation": "number",
"property-no-vendor-prefix": null,
"value-no-vendor-prefix": null,
"at-rule-empty-line-before": null,
"no-descending-specificity": null,
"value-keyword-case": [
"lower",
{
"camelCaseSvgKeywords": true,
"ignoreFunctions": ["local"]
}
],
"max-line-length": null,
"declaration-block-no-redundant-longhand-properties": [
true,
{
"ignoreShorthands": [
"grid-area",
"grid-column",
"grid-gap",
"grid-row",
"grid-template",
"inset"
]
}
],
"function-url-no-scheme-relative": true,
"max-nesting-depth": 5,
"no-unknown-animations": true
}
}