Created
November 2, 2025 06:47
-
-
Save pyratin/d5c5aadfadc2e2945b9e54bbd285808c to your computer and use it in GitHub Desktop.
styelint.config.js
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
| /** @type {import('stylelint').Config} */ | |
| export default { | |
| extends: ['stylelint-config-standard-scss'], | |
| rules: { | |
| 'selector-class-pattern': null, | |
| 'scss/percent-placeholder-pattern': null, | |
| 'scss/dollar-variable-pattern': null, | |
| 'color-function-notation': null, | |
| 'no-descending-specificity': null | |
| } | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment