当前位置:   article > 正文

使用pnpm包管理器搭建vue3项目的企业级配置_err_pnpm_invalid_package_name package name pnpm i

err_pnpm_invalid_package_name package name pnpm install -d eslint-pl

一、eslint配置(eslint中文官网:http://eslint.cn/)

ESLint最初是由[Nicholas C. Zakas](http://nczonline.net/) 于2013年6月创建的开源项目。它的目标是提供一个插件化的javascript代码检测工具

(1)首先安装eslint

pnpm i eslint -D

(2)生成配置文件 .eslint.cjs

npx eslint --init

(3)创建 .eslint.cjs 配置文件

  1. module.exports = {
  2. //运行环境
  3. "env": {
  4. "browser": true,//浏览器端
  5. "es2021": true,//es2021
  6. },
  7. //规则继承
  8. "extends": [
  9. //全部规则默认是关闭的,这个配置项开启推荐规则,推荐规则参照文档
  10. //比如:函数不能重名、对象不能出现重复key
  11. "eslint:recommended",
  12. //vue3语法规则
  13. "plugin:vue/vue3-essential",
  14. //ts语法规则
  15. "plugin:@typescript-eslint/recommended"
  16. ],
  17. //要为特定类型的文件指定处理器
  18. "overrides": [
  19. ],
  20. //指定解析器:解析器
  21. //Esprima 默认解析器
  22. //Babel-ESLint babel解析器
  23. //@typescript-eslint/parser ts解析器
  24. "parser": "@typescript-eslint/parser",
  25. //指定解析器选项
  26. "parserOptions": {
  27. "ecmaVersion": "latest",//校验ECMA最新版本
  28. "sourceType": "module"//设置为"script"(默认),或者"module"代码在ECMAScript模块中
  29. },
  30. //ESLint支持使用第三方插件。在使用插件之前,您必须使用npm安装它
  31. //该eslint-plugin-前缀可以从插件名称被省略
  32. "plugins": [
  33. "vue",
  34. "@typescript-eslint"
  35. ],
  36. //eslint规则
  37. "rules": {
  38. }
  39. }

二、环境代码校验插件

1.让所有与prettier规则存在冲突的Eslint rules失效,并使用prettier进行代码检查
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
2.运行更漂亮的Eslint,使prettier规则优先级更高,Eslint优先级低
"eslint-plugin-prettier": "^4.2.1",
vue.js的Eslint插件(查找vue语法错误,发现错误指令,查找违规风格指南
"eslint-plugin-vue": "^9.9.0",
3.该解析器允许使用Eslint校验所有babel code
"@babel/eslint-parser": "^7.19.1",

安装指令

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

(1)配置 eslint

eslint针对的是javascript,他是一个检测工具,包含js语法以及少部分格式问题。

创建并写入 .eslintrc.cjs 配置文件

  1. // @see https://eslint.bootcss.com/docs/rules/
  2. module.exports = {
  3. env: {
  4. browser: true,
  5. es2021: true,
  6. node: true,
  7. jest: true,
  8. },
  9. /* 指定如何解析语法 */
  10. parser: 'vue-eslint-parser',
  11. /** 优先级低于 parse 的语法解析配置 */
  12. parserOptions: {
  13. ecmaVersion: 'latest',
  14. sourceType: 'module',
  15. parser: '@typescript-eslint/parser',
  16. jsxPragma: 'React',
  17. ecmaFeatures: {
  18. jsx: true,
  19. },
  20. },
  21. /* 继承已有的规则 */
  22. extends: [
  23. 'eslint:recommended',
  24. 'plugin:vue/vue3-essential',
  25. 'plugin:@typescript-eslint/recommended',
  26. 'plugin:prettier/recommended',
  27. ],
  28. plugins: ['vue', '@typescript-eslint'],
  29. /*
  30. * "off" 或 0 ==> 关闭规则
  31. * "warn" 或 1 ==> 打开的规则作为警告(不影响代码执行)
  32. * "error" 或 2 ==> 规则作为一个错误(代码不能执行,界面报错)
  33. */
  34. rules: {
  35. // eslint(https://eslint.bootcss.com/docs/rules/
  36. 'no-var': 'error', // 要求使用 let 或 const 而不是 var
  37. 'no-multiple-empty-lines': ['warn', { max: 1 }], // 不允许多个空行
  38. 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
  39. 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
  40. 'no-unexpected-multiline': 'error', // 禁止空余的多行
  41. 'no-useless-escape': 'off', // 禁止不必要的转义字符
  42. // typeScript (https://typescript-eslint.io/rules)
  43. '@typescript-eslint/no-unused-vars': 'error', // 禁止定义未使用的变量
  44. '@typescript-eslint/prefer-ts-expect-error': 'error', // 禁止使用 @ts-ignore
  45. '@typescript-eslint/no-explicit-any': 'off', // 禁止使用 any 类型
  46. '@typescript-eslint/no-non-null-assertion': 'off',
  47. '@typescript-eslint/no-namespace': 'off', // 禁止使用自定义 TypeScript 模块和命名空间。
  48. '@typescript-eslint/semi': 'off',
  49. // eslint-plugin-vue (https://eslint.vuejs.org/rules/)
  50. 'vue/multi-word-component-names': 'off', // 要求组件名称始终为 “-” 链接的单词
  51. 'vue/script-setup-uses-vars': 'error', // 防止<script setup>使用的变量<template>被标记为未使用
  52. 'vue/no-mutating-props': 'off', // 不允许组件 prop的改变
  53. 'vue/attribute-hyphenation': 'off', // 对模板中的自定义组件强制执行属性命名样式
  54. },
  55. }

创建并写入 .eslintignore 忽略文件

  1. dist
  2. node_modules

package.json新增两个运行脚本

  1. "scripts": {
  2. "lint": "eslint src",
  3. "fix": "eslint src --fix",
  4. }

(2)配置 prettier

有了eslint,为什么还要有prettier,eslint针对的是javascript,他是一个检测工具,包含js语法以及少部分格式问题,在eslint看来,语法对了就能保证代码正常运行,格式问题属于其次;

而prettier属于格式化工具,它看不惯格式不统一,所以它就把eslint没干好的事接着干,另外,prettier支持包含js在内的多种语言。

总结起来,eslint和prettier这俩兄弟一个保证js代码质量,一个保证代码美观。

安装依赖包

pnpm install -D eslint-plugin-prettier prettier eslint-config-prettier

创建 .prettierrc.json 并添加规则

  1. {
  2. "singleQuote": true,
  3. "semi": false,
  4. "bracketSpacing": true,
  5. "htmlWhitespaceSensitivity": "ignore",
  6. "endOfLine": "auto",
  7. "trailingComma": "all",
  8. "tabWidth": 2
  9. }

创建并写入 .prettierignore 忽略文件

  1. /dist/*
  2. /html/*
  3. .local
  4. /node_modules/**
  5. **/*.svg
  6. **/*.sh
  7. /public/*

注:通过pnpm run lint去检测语法,如果出现不规范格式,通过pnpm run fix 修改

(3)配置stylelint

stylelint(https://stylelint.io/)为css的lint工具。可格式化css代码,检查css语法错误与不合理的写法,指定css书写顺序等。

我们的项目中使用scss作为预处理器

安装依赖包

pnpm add sass sass-loader stylelint postcss postcss-scss postcss-html stylelint-config-prettier stylelint-config-recess-order stylelint-config-recommended-scss stylelint-config-standard stylelint-config-standard-vue stylelint-scss stylelint-order stylelint-config-standard-scss -D

创建并配置 .stylelintrc.cjs 文件

  1. // @see https://stylelint.bootcss.com/
  2. module.exports = {
  3. extends: [
  4. 'stylelint-config-standard', // 配置stylelint拓展插件
  5. 'stylelint-config-html/vue', // 配置 vue 中 template 样式格式化
  6. 'stylelint-config-standard-scss', // 配置stylelint scss插件
  7. 'stylelint-config-recommended-vue/scss', // 配置 vue 中 scss 样式格式化
  8. 'stylelint-config-recess-order', // 配置stylelint css属性书写顺序插件,
  9. 'stylelint-config-prettier', // 配置stylelint和prettier兼容
  10. ],
  11. overrides: [
  12. {
  13. files: ['**/*.(scss|css|vue|html)'],
  14. customSyntax: 'postcss-scss',
  15. },
  16. {
  17. files: ['**/*.(html|vue)'],
  18. customSyntax: 'postcss-html',
  19. },
  20. ],
  21. ignoreFiles: [
  22. '**/*.js',
  23. '**/*.jsx',
  24. '**/*.tsx',
  25. '**/*.ts',
  26. '**/*.json',
  27. '**/*.md',
  28. '**/*.yaml',
  29. ],
  30. /**
  31. * null => 关闭该规则
  32. * always => 必须
  33. */
  34. rules: {
  35. 'value-keyword-case': null, // 在 css 中使用 v-bind,不报错
  36. 'no-descending-specificity': null, // 禁止在具有较高优先级的选择器后出现被其覆盖的较低优先级的选择器
  37. 'function-url-quotes': 'always', // 要求或禁止 URL 的引号 "always(必须加上引号)"|"never(没有引号)"
  38. 'no-empty-source': null, // 关闭禁止空源码
  39. 'selector-class-pattern': null, // 关闭强制选择器类名的格式
  40. 'property-no-unknown': null, // 禁止未知的属性(true 为不允许)
  41. 'block-opening-brace-space-before': 'always', //大括号之前必须有一个空格或不能有空白符
  42. 'value-no-vendor-prefix': null, // 关闭 属性值前缀 --webkit-box
  43. 'property-no-vendor-prefix': null, // 关闭 属性前缀 -webkit-mask
  44. 'selector-pseudo-class-no-unknown': [
  45. // 不允许未知的选择器
  46. true,
  47. {
  48. ignorePseudoClasses: ['global', 'v-deep', 'deep'], // 忽略属性,修改element默认样式的时候能使用到
  49. },
  50. ],
  51. },
  52. }

创建 .stylelintignore 忽略文件

  1. /node_modules/*
  2. /dist/*
  3. /html/*
  4. /public/*

添加运行脚本配置

  1. "scripts": {
  2. "lint:style": "stylelint src/**/*.{css,scss,vue} --cache --fix"
  3. }

最后配置统一的prettier来格式化我们的js和css,html代码

  1. "scripts": {
  2. "dev": "vite --open",
  3. "build": "vue-tsc && vite build",
  4. "preview": "vite preview",
  5. "lint": "eslint src",
  6. "fix": "eslint src --fix",
  7. "format": "prettier --write \"./**/*.{html,vue,ts,js,json,md}\"",
  8. "lint:eslint": "eslint src/**/*.{ts,vue} --cache --fix",
  9. "lint:style": "stylelint src/**/*.{css,scss,vue} --cache --fix"
  10. },

当我们运行pnpm run format的时候,会把代码直接格式化

(4)配置husky

在上面我们已经集成好了我们代码校验工具,但是需要每次手动的去执行命令才会格式化我们的代码。如果有人没有格式化就提交了远程仓库中,那这个规范就没什么用。所以我们需要强制让开发人员按照代码规范来提交。

要做到这件事情,就需要利用husky在代码提交之前触发git hook(git在客户端的钩子),然后执行pnpm run format来自动的格式化我们的代码。

安装husky

pnpm install -D husky

执行

npx husky-init

会在根目录下生成个一个.husky目录,在这个目录下面会有一个pre-commit文件,这个文件里面的命令在我们执行commit的时候就会执行

在 .husky/pre-commit 文件添加如下命令:

  1. #!/usr/bin/env sh
  2. . "$(dirname -- "$0")/_/husky.sh"
  3. pnpm run format

当我们对代码进行commit操作的时候,就会执行命令,对代码进行格式化,然后再提交。

(5)配置commitlint

对于我们的commit信息,也是有统一规范的,不能随便写,要让每个人都按照统一的标准来执行,我们可以利用commitlint来实现。

安装包

pnpm add @commitlint/config-conventional @commitlint/cli -D

添加配置文件,新建 commitlint.config.cjs (注意是cjs),然后添加下面的代码:

  1. module.exports = {
  2. extends: ['@commitlint/config-conventional'],
  3. // 校验规则
  4. rules: {
  5. 'type-enum': [
  6. 2,
  7. 'always',
  8. [
  9. 'feat',
  10. 'fix',
  11. 'docs',
  12. 'style',
  13. 'refactor',
  14. 'perf',
  15. 'test',
  16. 'chore',
  17. 'revert',
  18. 'build',
  19. ],
  20. ],
  21. 'type-case': [0],
  22. 'type-empty': [0],
  23. 'scope-empty': [0],
  24. 'scope-case': [0],
  25. 'subject-full-stop': [0, 'never'],
  26. 'subject-case': [0, 'never'],
  27. 'header-max-length': [0, 'always', 72],
  28. },
  29. }

在 package.json 中配置scripts命令

  1. {
  2. "scripts": {
  3. "commitlint": "commitlint --config commitlint.config.cjs -e -V"
  4. },
  5. }

配置结束,现在当我们填写commit信息的时候,前面就需要带着下面的subject

  1. 'feat',//新特性、新功能
  2. 'fix',//修改bug
  3. 'docs',//文档修改
  4. 'style',//代码格式修改, 注意不是 css 修改
  5. 'refactor',//代码重构
  6. 'perf',//优化相关,比如提升性能、体验
  7. 'test',//测试用例修改
  8. 'chore',//其他修改, 比如改变构建流程、或者增加依赖库、工具等
  9. 'revert',//回滚到上一个版本
  10. 'build',//编译相关的修改,例如发布版本、对项目构建或者依赖的改动

配置husky

npx husky add .husky/commit-msg 

在生成的commit-msg文件中添加下面的命令

  1. #!/usr/bin/env sh
  2. . "$(dirname -- "$0")/_/husky.sh"
  3. pnpm commitlint

当我们 commit 提交信息时,就不能再随意写了,必须是 git commit -m 'fix: xxx' 符合类型的才可以,需要注意的是类型的后面需要用英文的 :,并且冒号后面是需要空一格的,这个是不能省略的。

(6)强制使用pnpm包管理器工具

团队开发项目的时候,需要统一包管理器工具,因为不同包管理器工具下载同一个依赖,可能版本不一样,

导致项目出现bug问题,因此包管理器工具需要统一管理!!!
在根目录创建 scritps/preinstall.js 文件,添加下面的内容

  1. if (!/pnpm/.test(process.env.npm_execpath || '')) {
  2. console.warn(
  3. `\u001b[33mThis repository must using pnpm as the package manager ` +
  4. ` for scripts to work properly.\u001b[39m\n`,
  5. )
  6. process.exit(1)
  7. }

配置命令

  1. "scripts": {
  2. "preinstall": "node ./scripts/preinstall.js"
  3. }

当我们使用npm或者yarn来安装包的时候,就会报错了。原理就是在install的时候会触发preinstall(npm提供的生命周期钩子)这个文件里面的代码。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/324688
推荐阅读
相关标签
  

闽ICP备14008679号