二、项目配置:1、 eslint配置

eslint 官方文档地址:http://eslint.cn/

一、安装命令:

pnpm i eslint

二、初始化配置文件 【.eslint.cjs】

1、执行命令,生成.eslint.cjs初始化文件。

npx eslint --init

按圈出来的进行选择 【enter】进行下一步:

最后 进行下载。

问题集合:

2.1、vue3安装环境代码校验插件 ,让与prettier规则存在冲突的Eslint rules失效,并使用prettier进行代码检查。

安装命令:

pnpm install -D eslint-plugin-import eslint-plugin-vue eslint-plugin-node eslint-plugin-prettier eslint-config-prettier eslint-plugin-node @babel/eslint-parser

"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
# 运行更漂亮的Eslint,使prettier规则优先级更高,Eslint优先级低
"eslint-plugin-prettier": "^4.2.1",
# vue.js的Eslint插件(查找vue语法错误,发现错误指令,查找违规风格指南
"eslint-plugin-vue": "^9.9.0",
# 该解析器允许使用Eslint校验所有babel code
"@babel/eslint-parser": "^7.19.1",

2.2、.eslint.cjs配置文件修改后:

// @see https://eslint.bootcss.com/docs/rules/

module.exports = {
  env: {
    browser: true,
    es2021: true,
    node: true,
    jest: true,
  },
  /* 指定如何解析语法 */
  parser: 'vue-eslint-parser',
  /** 优先级低于 parse 的语法解析配置 */
  parserOptions: {
    ecmaVersion: 'latest',
    sourceType: 'module',
    parser: '@typescript-eslint/parser',
    jsxPragma: 'React',
    ecmaFeatures: {
      jsx: true,
    },
  },
  /* 继承已有的规则 */
  extends: [
    'eslint:recommended',
    'plugin:vue/vue3-essential',
    'plugin:@typescript-eslint/recommended',
    'plugin:prettier/recommended',
  ],
  plugins: ['vue', '@typescript-eslint'],
  /*
   * "off" 或 0    ==>  关闭规则
   * "warn" 或 1   ==>  打开的规则作为警告(不影响代码执行)
   * "error" 或 2  ==>  规则作为一个错误(代码不能执行,界面报错)
   */
  rules: {
    // eslint(https://eslint.bootcss.com/docs/rules/)
    'no-var': 'error', // 要求使用 let 或 const 而不是 var
    'no-multiple-empty-lines': ['warn', { max: 1 }], // 不允许多个空行
    'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
    'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
    'no-unexpected-multiline': 'error', // 禁止空余的多行
    'no-useless-escape': 'off', // 禁止不必要的转义字符

    // typeScript (https://typescript-eslint.io/rules)
    '@typescript-eslint/no-unused-vars': 'error', // 禁止定义未使用的变量
    '@typescript-eslint/prefer-ts-expect-error': 'error', // 禁止使用 @ts-ignore
    '@typescript-eslint/no-explicit-any': 'off', // 禁止使用 any 类型
    '@typescript-eslint/no-non-null-assertion': 'off',
    '@typescript-eslint/no-namespace': 'off', // 禁止使用自定义 TypeScript 模块和命名空间。
    '@typescript-eslint/semi': 'off',

    // eslint-plugin-vue (https://eslint.vuejs.org/rules/)
    'vue/multi-word-component-names': 'off', // 要求组件名称始终为 “-” 链接的单词
    'vue/script-setup-uses-vars': 'error', // 防止<script setup>使用的变量<template>被标记为未使用
    'vue/no-mutating-props': 'off', // 不允许组件 prop的改变
    'vue/attribute-hyphenation': 'off', // 对模板中的自定义组件强制执行属性命名样式
  },
}

2.3、根目录下添加 .eslintignore 忽略文件,内容如下:

dist
node_modules

ops! 某些出错了!:( eslint: 8.55.0 eslint 无法找到配置文件。 这个错误通常发生在使用eslint进行代码检查时。它表明eslint无法找到所需的配置文件来执行代码检查。 要解决这个问题,我们需要检查以下几点: 1. 首先,确保项目中有一个有效的eslint配置文件。eslint可以使用多种不同的配置文件,如.eslintrc、.eslintrc.json、.eslintrc.yaml等。请确保文件存在,并设置了正确的配置。 2. 检查eslint的版本是否与错误消息中提到的版本匹配。如果不匹配,可以尝试通过升级或降级eslint来解决问题。 3. 确保eslint配置文件路径、文件名和位置都是正确的。有时候,eslint可能无法找到配置文件,是因为配置文件的路径或名称不正确。请检查配置文件是否位于项目根目录下,并且文件名以支持的格式命名。 4. 检查你的项目依赖中是否有缺少的eslint插件。如果在配置文件中使用了特定的插件但没有安装对应的插件,eslint会报错。你可以通过检查项目的package.json文件来确认是否安装了所需的插件,并确保它们的版本与配置文件中的要求一致。 5. 最后,尝试重新安装eslint依赖并重新配置eslint。有时候,依赖关系可能出现问题,导致eslint无法正常工作。可以尝试删除项目的node_modules文件夹,然后重新运行npm install命令安装依赖。 如果以上步骤都无法解决问题,还可以查阅eslint的文档或在相关的技术社区中提问,以获取更多帮助和解决方案。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

大大大大大白呢

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值