赞
踩
在.eslintrc.cjs中配置
- {
- rules: {
- 'prettier/prettier': [
- 'warn',
- {
- singleQuote: true,
- semi: false,
- printWidth: 80,
- trailingComma: 'none',
- endOfLine: 'auto'
- }
- ],
- 'vue/multi-word-component-names': [
- 'warn',
- {
- ignores: ['index']
- }
- ],
- 'vue/no-setup-props-destructure': ['off']
- }
- }
VSCode 开启 ESLint 自动修复, .vscode/settings.json
。
- {
- // 省略其他
- "editor.codeActionsOnSave": {
- "source.fixAll": true,
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。