Skip to content

Commit

Permalink
fix(CSS): library window refactor (Thibault) (PR #1589 supersedes PR #…
Browse files Browse the repository at this point in the history
…1571  Fixes #410 Fixes #1196 Fixes #1348 Fixes #1329 )
  • Loading branch information
danielweck committed Nov 12, 2021
1 parent d77a56d commit cdc607b
Show file tree
Hide file tree
Showing 165 changed files with 47,332 additions and 17,758 deletions.
33 changes: 33 additions & 0 deletions .stylelintrc.json
@@ -0,0 +1,33 @@
{
"extends": "stylelint-config-standard",
"rules": {
"declaration-block-no-redundant-longhand-properties": null,
"shorthand-property-no-redundant-values": null,
"selector-class-pattern": null,
"custom-property-pattern": null,
"selector-id-pattern": null,
"keyframes-name-pattern": null,
"property-no-vendor-prefix": null,
"value-no-vendor-prefix": null,
"number-max-precision": null,
"color-function-notation": null,
"alpha-value-notation": null,
"string-quotes": null,
"selector-attribute-quotes": null,
"function-url-quotes": null,
"font-family-name-quotes": null,
"no-descending-specificity": null,
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": ["define-mixin", "mixin", "include"]
}
],
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": ["global"]
}
]
}
}

0 comments on commit cdc607b

Please sign in to comment.