2022-01-05 20:43:36 +01:00
|
|
|
module.exports = {
|
|
|
|
extends: ['stylelint-config-standard'],
|
|
|
|
customSyntax: require('postcss-scss'),
|
|
|
|
plugins: ['stylelint-scss'],
|
2020-11-11 09:48:04 +01:00
|
|
|
rules: {
|
|
|
|
'at-rule-no-unknown': null,
|
|
|
|
'no-duplicate-selectors': null,
|
|
|
|
'font-family-no-missing-generic-family-keyword': null,
|
|
|
|
'no-descending-specificity': null,
|
|
|
|
'scss/at-rule-no-unknown': true,
|
|
|
|
},
|
2022-01-05 20:43:36 +01:00
|
|
|
};
|