SiteWebAstrolabe/.stylelintrc.json

20 lines
506 B
JSON
Raw Permalink Normal View History

2020-06-19 23:47:44 +02:00
{
"extends": "stylelint-config-sass-guidelines",
"rules": {
"order/properties-alphabetical-order": null,
"property-no-vendor-prefix": null,
"selector-class-pattern": [
"^[a-z0-9\\-_]+$",
{
"message":
"Selector should be written in lowercase (selector-class-pattern)"
}
],
2020-07-17 23:59:55 +02:00
"max-nesting-depth": 6,
2020-06-19 23:47:44 +02:00
"number-leading-zero": "never",
"selector-no-qualifying-type": null,
2020-07-17 23:59:55 +02:00
"selector-max-compound-selectors": 6,
"selector-max-id": 1
2020-06-19 23:47:44 +02:00
}
}