Created
May 20, 2023 19:22
-
-
Save MikeiLL/2253fcda8910853c7cc524bb56880281 to your computer and use it in GitHub Desktop.
Bootstrap 5 Ignores
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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