vue 项目报错

vue 项目报错_第1张图片

修改.eslintrc.js 文件中的配置参数

module.exports = {
  "env": {
    "browser": true,
    "es6": true
  },
  "extends": [
    "eslint:recommended",
    "plugin:react/recommended"
  ],
  "globals": {
    "Atomics": "readonly",
    "SharedArrayBuffer": "readonly"
  },
  "parserOptions": {
    "ecmaFeatures": {
      "jsx": true
    },
    "ecmaVersion": 2018,
    "sourceType": "module"
  },
  "plugins": [
    "react"
  ],
  "rules": {
  
    'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
    'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
    'semi':0
    ,
    'space-before-function-paren': 0
  }
};

2.在项目根目录文件下创建.prettierrc配置文件,文件中放一下json数据

{
    "semi": false,  //分号
    "singlequote": true  //引号
}

你可能感兴趣的:(笔记)