Skip to content

Instantly share code, notes, and snippets.

@crutch12
Created April 16, 2022 23:41
Show Gist options
  • Save crutch12/4ac406d71178cb6b352a7b2c08693d44 to your computer and use it in GitHub Desktop.
Save crutch12/4ac406d71178cb6b352a7b2c08693d44 to your computer and use it in GitHub Desktop.
Stylelint scss config
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