发布于2022-03-12 21:20 阅读(1464) 评论(0) 点赞(25) 收藏(1)
在vscode编辑器当中使用vite框架,配置eslint:
首先在vite项目中,安装eslint-plugin-vue
依赖
npm install --save-dev eslint eslint-config-prettier eslint-plugin-prettier eslint-plugin-vue eslint-plugin-html prettier @babel/plugin-syntax-dynamic-import babel-eslint
or
yarn add eslint eslint-config-prettier eslint-plugin-prettier eslint-plugin-vue eslint-plugin-html prettier --dev
在根目录下创建.eslintrc.js
.eslintrc.js配置如下
- module.exports = {
- env: {
- browser: true,
- es2021: true,
- node: true
- },
- extends: ['plugin:vue/vue3-recommended', 'prettier'],
- parserOptions: {
- parser: 'babel-eslint',
- sourceType: 'module',
- allowImportExportEverywhere: true,
- ecmaVersion: 2019,
- sourceType: 'module'
- },
- plugins: ['@babel/plugin-syntax-dynamic-import', 'vue', 'html', 'prettier'],
- rules: {
- 'prettier/prettier': 'error'
- }
- };
在根目录下创建.prettierrc
- {
- "semi": true,
- "endOfLine": "auto",
- "singleQuote": true,
- "trailingComma": "none"
- }
vscode编辑器配置
- {
- "editor.codeActionsOnSave": {
- "source.fixAll": true,
- "source.fixAll.eslint": true
- },
- "eslint.alwaysShowStatus": true,
- "eslint.validate": [
- "vue",
- "javascript",
- "javascriptreact",
- "html",
- ],
- "[html]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "eslint.options": {
- "overrideConfig": {
- "env": {
- "browser": true,
- "es6": true
- },
- "parserOptions": {
- "ecmaVersion": 2019,
- "sourceType": "module",
- "ecmaFeatures": {
- "jsx": true
- }
- },
- "rules": {
- "no-debugger": "off"
- }
- }
- },
- }
完成以上配置后在vite框架下就可以使用eslint+prettier进行格式化校验了,但是如果创建路由进行懒加载的话
会出现这么一个错误。
许多网上教程说安装babel-eslint插件并且,在 .eslintrc.js配置中加入
这是虽然解决了路由懒加载那里的错误,但是在出现import的地方都会出现新的错误
所以,干脆直接忽略掉路由文件夹下的校验,具体做法是在根目录下创建 .eslintignore文件,在该文件中加入router,忽略掉router文件夹下的所有校验。
重启vscode编辑器。
浏览器界面显示 ESLint的 错误
对于大多数开发人员和团队来说,我们目前的设置可能足以提高生产力。但是,如果您想更进一步,您可以安装 Vite ESLint 插件以在浏览器中查看覆盖在您的应用程序上的 ESLint 问题。
使用 Vite 在浏览器中覆盖 ESLint 错误
这使得那些无法自动修复的 ESLint 错误无法被忽略。我知道一些喜欢这个的开发人员和其他人觉得它超级烦人,所以如果你愿意就安装它,否则只要确保你特别注意你的 IDE 中的那些红色曲线。
vite-plugin-eslint
通过运行安装
npm install vite-plugin-eslint --save-dev
然后通过导入插件注册插件并将其添加为插件vite.config.js
- import { defineConfig } from 'vite';
- import eslintPlugin from 'vite-plugin-eslint';
-
- export default defineConfig({
- plugins: [eslintPlugin()],
- });
就是这样,任何 ESLint 错误现在都会在浏览器中报告!如果它不适合您,请尝试重新启动development server。
作者:Hggh
链接:http://www.qianduanheidong.com/blog/article/317168/060326e2c6c273f1d98a/
来源:前端黑洞网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
---无人问津也好,技不如人也罢,你都要试着安静下来,去做自己该做的事,而不是让内心的烦躁、焦虑,坏掉你本来就不多的热情和定力
Copyright © 2018-2021 前端黑洞网 All Rights Reserved 版权所有,并保留所有权利。 京ICP备18063182号-3
投诉与举报,广告合作请联系vgs_info@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!