vite框架使用eslint配置

在vscode编辑器当中使用vite框架,配置eslint:

首先在vite项目中,安装eslint-plugin-vue依赖

npm install --save-dev eslint eslint-plugin-vue

or

yarn add -D eslint eslint-plugin-vue

在根目录下创建.eslintrc.js

.eslintrc.js配置如下

module.exports = {
  root: true,
  parserOptions: {
    sourceType: 'module'
  },
  parser: 'vue-eslint-parser',
  env: {
    browser: true,
    node: true,
    es6: true
  },
  rules: {
    'no-console': 'off'
  }
};

重启vscode编辑器。

 

 

 

 

上一篇:[vite] not read vite.config.ts when build 编译时没有读取vite.config.ts文件


下一篇:在VSCode终端使用PowerShell,用vite搭建项目时出现create-vite-app : 无法加载文件 E:\nodeJs\node_global\create-vite-app.