Created
April 16, 2022 23:41
-
-
Save crutch12/4ac406d71178cb6b352a7b2c08693d44 to your computer and use it in GitHub Desktop.
Stylelint scss config
This file contains 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
module.exports = { | |
plugins: ['stylelint-scss'], | |
extends: 'stylelint-config-standard', | |
rules: { | |
// @NOTE: This conflicts with @use from scss | |
'at-rule-no-unknown': null, | |
'scss/at-rule-no-unknown': true, | |
// @NOTE: This conflicts with styled-components | |
'no-empty-source': null, | |
'no-descending-specificity': ['off'], | |
'value-keyword-case': ['off'], | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment