mirror of
https://github.com/outbackdingo/openapi-ui.git
synced 2026-01-27 10:19:49 +00:00
44 lines
1.4 KiB
Plaintext
44 lines
1.4 KiB
Plaintext
{
|
|
"extends": ["stylelint-config-standard"],
|
|
"customSyntax": "postcss-styled-syntax",
|
|
"rules": {
|
|
"declaration-empty-line-before": "never",
|
|
"color-named": "always-where-possible",
|
|
"selector-no-qualifying-type": true,
|
|
"selector-max-combinators": 4,
|
|
"rule-empty-line-before": ["always-multi-line", { "except": ["first-nested"] }],
|
|
"selector-attribute-quotes": "always",
|
|
"declaration-block-no-duplicate-properties": true,
|
|
"declaration-no-important": true,
|
|
"property-no-vendor-prefix": true,
|
|
"value-no-vendor-prefix": true,
|
|
"function-url-quotes": "always",
|
|
"font-weight-notation": "numeric",
|
|
"font-family-name-quotes": "always-unless-keyword",
|
|
"comment-whitespace-inside": "always",
|
|
"at-rule-no-vendor-prefix": true,
|
|
"selector-pseudo-element-colon-notation": "single",
|
|
"selector-no-vendor-prefix": true,
|
|
"selector-type-no-unknown": null,
|
|
"media-feature-name-no-vendor-prefix": true,
|
|
"block-no-empty": null,
|
|
"selector-pseudo-class-no-unknown": [
|
|
true,
|
|
{
|
|
"ignorePseudoClasses": ["global"]
|
|
}
|
|
],
|
|
"property-no-unknown": [
|
|
true,
|
|
{
|
|
"ignoreProperties": ["composes", "compose-with"]
|
|
}
|
|
],
|
|
"value-keyword-case": null,
|
|
"selector-class-pattern": null,
|
|
"color-function-notation": null,
|
|
"alpha-value-notation": null,
|
|
"at-rule-no-unknown": null
|
|
}
|
|
}
|