10 lines
267 B
JavaScript
10 lines
267 B
JavaScript
module.exports = {
|
|
extends: ['stylelint-config-standard', 'stylelint-config-prettier'],
|
|
// add your custom config here
|
|
// https://stylelint.io/user-guide/configuration
|
|
rules: {
|
|
'at-rule-no-unknown': null,
|
|
'declaration-empty-line-before': null,
|
|
},
|
|
}
|