解决vue3.0运行项目warning Insert `·` prettier/prettier问题
作者:船长在船上
这篇文章主要介绍了解决vue3.0运行项目warning Insert `·` prettier/prettier问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
vue3.0运行项目warning Insert `·` prettier/prettier
警告:
解决
执行 npm run lint --fix
vue prettier/prettier eslintrc相关问题
修改 eslint 记得重新 run 一下
1:warning Delete ␍ prettier/prettier(eslint配置的一些问题)
原因描述
在window系统中,clone代码下来,会自动把换行符LF(linefeed character) 转换成回车符CRLF(carriage-return character)。这时候我们本地的代码都是回车符。
方法一: 自动修复,不可能每次拉代码都要修改好麻烦不支持
npm run lint --fix
方法二:git 修改配置
git config --global core.autocrlf false
2:Replace (变量) with 变量eslintprettier/prettier
箭头函数单个参数时,vscode的prettier和vue的prettier冲突,
解决办法,eslintrc.js中添加
错误信息 this.(values).then((success) => ({
Replace(success)withsuccesseslintprettier/prettier
//处理箭头函数单个参数括号规则冲突 .eslintrc.js rules: { "prettier/prettier": ["error", { singleQuote: true, parser: "flow" }] },
3:vue-cli3报error Parsing error: Unexpected token (太难了)
这个问题网上所有办法都不行,最后直接拿出一个完整版
module.exports = { root: true, env: { node: true, }, extends: ['plugin:vue/essential', 'eslint:recommended', '@vue/prettier'], parserOptions: { parser: 'babel-eslint', ecmaFeatures: { // open the `decorators` function legacyDecorators: true, }, }, // 'arrow-parens': ['error', 'as-needed'], rules: { 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off', 'no-param-reassign': 'off', 'no-unused-vars': 'off', 'no-underscore-dangle': 'off', 'no-unreachable': 'off', 'generator-star-spacing': 'off', 'import/no-extraneous-dependencies': 'off', 'array-callback-return': 'off', 'no-useless-escape': 'off', 'no-confusing-arrow': 'off', 'consistent-return': 'off', 'no-debugger': 'warn', 'no-plusplus': 'off', 'jsx-a11y/label-has-associated-control': 'off', 'jsx-a11y/label-has-for': 'off', 'comma-dangle': 0, 'object-curly-newline': 'off', 'operator-linebreak': 'off', 'import/prefer-default-export': 'off', 'implicit-arrow-linebreak': 'off', 'import/no-unresolved': 'off', 'import/extensions': 'off', 'arrow-parens': 0, 'prettier/prettier': 'off', }, };
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。