Skip to content

Instantly share code, notes, and snippets.

@MikeiLL
Created May 20, 2023 19:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MikeiLL/2253fcda8910853c7cc524bb56880281 to your computer and use it in GitHub Desktop.
Save MikeiLL/2253fcda8910853c7cc524bb56880281 to your computer and use it in GitHub Desktop.
Bootstrap 5 Ignores
{
"plugins": ["stylelint-scss"],
"customSyntax": "postcss-scss",
"extends": [
"@roots/bud-sass/stylelint-config",
"@roots/sage/stylelint-config"
],
"rules": {
"no-descending-specificity": null,
"selector-class-pattern": null,
"function-no-unknown": null,
"alpha-value-notation": null,
"font-family-name-quotes": null,
"declaration-block-no-redundant-longhand-properties": null,
"color-function-notation": null,
"scss/at-extend-no-missing-placeholder": null,
"shorthand-property-no-redundant-values": null,
"property-no-vendor-prefix": null,
"import-notation": null,
"scss/at-import-partial-extension": null,
"comment-empty-line-before": null,
"scss/no-global-function-names": null,
"function-url-quotes": null,
"declaration-colon-newline-after": null,
"value-list-comma-newline-after": null,
"no-empty-source": null,
"at-rule-empty-line-before": null,
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"extend",
"at-root",
"debug",
"warn",
"error",
"if",
"else",
"for",
"each",
"while",
"mixin",
"include",
"content",
"return",
"tailwind",
"apply",
"responsive",
"variants",
"screen",
"function",
"use"
]
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment