Authored by 郝肖肖

'rc'

1 -{  
2 - "extends": "stylelint-config-yoho",  
3 - "processors": ["@mapbox/stylelint-processor-arbitrary-tags"],  
4 - "rules": {  
5 - "string-quotes": "double",  
6 - "no-empty-source": null  
7 - }  
8 -} 1 +module.exports = {
  2 + extends: 'stylelint-config-yoho',
  3 + processors: [
  4 + [
  5 + '@mapbox/stylelint-processor-arbitrary-tags',
  6 + {
  7 + fileFilterRegex: [/\.vue$/]
  8 + }
  9 + ]
  10 + ],
  11 + rules: {
  12 + 'string-quotes': 'double',
  13 + 'no-empty-source': null
  14 + }
  15 +};