Showing
1 changed file
with
14 additions
and
7 deletions
1 | -{ | ||
2 | - "extends": "stylelint-config-yoho", | ||
3 | - "processors": ["@mapbox/stylelint-processor-arbitrary-tags"], | ||
4 | - "rules": { | ||
5 | - "string-quotes": "double", | ||
6 | - "no-empty-source": null | 1 | +module.exports = { |
2 | + extends: 'stylelint-config-yoho', | ||
3 | + processors: [ | ||
4 | + [ | ||
5 | + '@mapbox/stylelint-processor-arbitrary-tags', | ||
6 | + { | ||
7 | + fileFilterRegex: [/\.vue$/] | ||
7 | } | 8 | } |
8 | -} | 9 | + ] |
10 | + ], | ||
11 | + rules: { | ||
12 | + 'string-quotes': 'double', | ||
13 | + 'no-empty-source': null | ||
14 | + } | ||
15 | +}; |
-
Please register or login to post a comment