UNPKG

@neosjs/create-app

Version:

帮助开发者快速创建Vue3应用并自动配置项目

36 lines (35 loc) 855 B
export default { extends: [ 'stylelint-config-standard', 'stylelint-config-standard-scss', 'stylelint-config-html', 'stylelint-config-recommended-vue', 'stylelint-config-recess-order', 'stylelint-prettier/recommended' ], plugins: ['stylelint-order', 'stylelint-prettier'], rules: { 'prettier/prettier': [true, { singleQuote: true, tabWidth: 2 }], 'no-empty-source': process.env.NODE_ENV === 'production' ? true : null, 'block-no-empty': process.env.NODE_ENV === 'production' ? true : null, 'at-rule-no-unknown': null, 'at-rule-no-vendor-prefix': true, 'no-duplicate-selectors': null }, ignoreFiles: [ 'node_modules', 'dist', 'public', 'output', 'coverage', 'temp', '*.js', '*.cjs', '*.mjs', '*.ts', '*.tsx', '*.svg', '*.gif', '*.md' ] }