Authored by 郝肖肖

'rc'

{
"extends": "stylelint-config-yoho",
"processors": ["@mapbox/stylelint-processor-arbitrary-tags"],
"rules": {
"string-quotes": "double",
"no-empty-source": null
}
}
module.exports = {
extends: 'stylelint-config-yoho',
processors: [
[
'@mapbox/stylelint-processor-arbitrary-tags',
{
fileFilterRegex: [/\.vue$/]
}
]
],
rules: {
'string-quotes': 'double',
'no-empty-source': null
}
};
... ...