https://github.com/twbs/bootstrap
Revision 849fea5a1ec6a2c39451fefb21a70c6dc9ceac42 authored by Mark Otto on 14 September 2020, 22:03:52 UTC, committed by XhmikosR on 15 September 2020, 05:19:58 UTC
 Closes #30835 by leaving a comment in the source that the escape-svg() function must have quotes around data URIs.
1 parent 5f5f1cb
Raw File
Tip revision: 849fea5a1ec6a2c39451fefb21a70c6dc9ceac42 authored by Mark Otto on 14 September 2020, 22:03:52 UTC
Add a comment for escape-svg function
Tip revision: 849fea5
.stylelintrc
{
  "extends": [
    "stylelint-config-twbs-bootstrap/scss"
  ],
  "rules": {
    "property-blacklist": [
      "border-radius",
      "border-top-left-radius",
      "border-top-right-radius",
      "border-bottom-right-radius",
      "border-bottom-left-radius",
      "transition"
    ],
    "function-blacklist": ["calc"],
    "scss/dollar-variable-default": [
      true,
      {
        "ignore": "local"
      }
    ]
  }
}
back to top