UNPKG

@twotwoba/vv-cli

Version:

CLI tool for creating Vue3 or React19 template projects by vite

25 lines (24 loc) 756 B
module.exports = { ignoreFiles: ['node_modules/**', 'dist/**'], extends: ['stylelint-config-standard', 'stylelint-config-standard-scss', 'stylelint-config-recess-order'], overrides: [ { files: ['**/*.(scss|css|vue|html)'], customSyntax: 'postcss-scss' }, { files: ['**/*.(html|vue)'], customSyntax: 'postcss-html' } ], rules: { 'value-keyword-case': null, 'no-descending-specificity': null, 'selector-pseudo-class-no-unknown': [ true, { ignorePseudoClasses: ['global', 'v-deep', 'deep'] // 忽略属性,例如修改组件库默认样式的时候能使用到 } ] } }