harbor/src/portal/.stylelintrc.json
Shijun Sun 83bce02e61
Refactor swagger ui (#17428)
Signed-off-by: AllForNothing <sshijun@vmware.com>

Signed-off-by: AllForNothing <sshijun@vmware.com>
2022-08-23 12:03:45 +08:00

25 lines
444 B
JSON

{
"extends": [
"stylelint-config-standard",
"stylelint-config-prettier",
"stylelint-config-standard-scss",
"stylelint-config-prettier-scss"
],
"rules": {
"selector-pseudo-element-no-unknown": [
true,
{
"ignorePseudoElements": [
"ng-deep"
]
}
],
"no-empty-source": null
},
"ignoreFiles": [
"**/*.md",
"src/**/*.html",
"app-swagger-ui/**/*.html"
]
}