mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
889 B
32 lines
889 B
{
|
|
"extends": "stylelint-config-standard",
|
|
"plugins": [
|
|
"stylelint-scss"
|
|
],
|
|
"rules": {
|
|
"at-rule-empty-line-before": null,
|
|
"at-rule-no-unknown": null,
|
|
"selector-class-pattern": "^([a-z][a-z0-9]*)(-[a-z0-9]+)*$",
|
|
"declaration-empty-line-before": null,
|
|
"indentation": 4,
|
|
"no-duplicate-selectors": null,
|
|
"no-empty-source": null,
|
|
"no-invalid-position-at-import-rule": null,
|
|
"no-missing-end-of-source-newline": null,
|
|
"number-leading-zero": "never",
|
|
"scss/at-rule-no-unknown": true,
|
|
"selector-pseudo-element-no-unknown": [
|
|
true,
|
|
{
|
|
"ignorePseudoElements": [
|
|
"ng-deep"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"ignoreFiles": [
|
|
"**/*.cs",
|
|
"build/**/*.*",
|
|
"node_modules/**/*.*"
|
|
]
|
|
}
|