vue-cli3脚手架下Eslint的配置报错问题

在Eslint严格模式下会对代码进行一定的规范,一下是不规范的报错。vue-cli3脚手架下Eslint的配置报错问题_第1张图片

解决方案

直接关闭eslintrc 配置一个vue.config.js

module.exports = {
    lintOnSave: false
  }

在目录.eslintrc.js下配置常用的规范

	module.exports = {
  root: true,
  env: {
    node: true
  },
  // extends: ["plugin:vue/essential", "@vue/prettier"],//这里面的@vue/prettier去掉
  extends: ["plugin:vue/essential"],
  rules: {
    "no-console": process.env.NODE_ENV === "production" ? "error" : "off",
    "no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
    "space-before-function-paren":0
  },
  parserOptions: {
    // parser: "babel-eslint"
  }

给项目添加.prettierrc

prettierrc用于格式化代码 shift+alt+f 在格式化代码会将配置的规则格式化转换

{
    "semi": false,
    "singleQuote": true
}

如果是用vscode格式化,Vue文件会自动加分号问题解决如下

打开 文件–>首选项–>设置 (快捷键ctrl+,)

vue-cli3脚手架下Eslint的配置报错问题_第2张图片

在json中添加以下配置,就不会有分号啦
"vetur.format.defaultFormatterOptions": {
        "prettier": {
            "semi": false,
            "singleQuote": true
        }
    }
如果需要在方法括号之间加空格,还需加入以下配置
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"vetur.format.defaultFormatter.js": "vscode-typescript"
{
    "[json]": {
        
        "editor.quickSuggestions": {
            "strings": true
        },
        "editor.suggest.insertMode": "replace"
    },
    "vetur.format.defaultFormatterOptions": {
        "prettier": {
            "semi": false,
            "singleQuote": true
        }
    },
    "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
     "vetur.format.defaultFormatter.js": "vscode-typescript"
}

你可能感兴趣的:(Vue,项目总结)