vite项目添加eslint|vite项目添加eslint prettier及husky方法实例
目录
- 1. 初始化vite项目
- 2. 添加eslint
- 3. 添加 prettier
- 4. 添加 husky和lint-staged
- 5. 配置commitlint
1. 初始化vite项目
npm init vite? Project name: … vite-project // 项目名称,默认 vite-project? Select a framework: ? react// 选择框架? Select a variant: ? react-ts // 选择组合
2. 添加eslint 【vite项目添加eslint|vite项目添加eslint prettier及husky方法实例】安装
npm i -D eslint
初始化
eslint
配置npx eslint --init? How would you like to use ESLint? // To check syntax, find problems, and enforce code style? What type of modules does your project use? // JavaScript modules (import/export)? Which framework does your project use? // react? Does your project use TypeScript? // Yes? Where does your code run? // browser? How would you like to define a style for your project? // Use a popular style guide? Which style guide do you want to follow? // Airbnb? What format do you want your config file to be in? // JavaScript
解决
eslint
报错Missing semicolon.eslint
: 末尾加上;
即可JSX not allowed in files with extension '.tsx'
: 在.eslintrc.json
中添加rules
设置{// ..."react/jsx-filename-extension": ["error",{"extensions": [".js", ".jsx", ".tsx", ".ts"]}]};
{count} must be placed on a new line
: 代码换行即可;Unable to resolve path to module './App'
: 在.eslintrc.json
中添加rules
设置{// ...rules: {"import/no-unresolved": "off","import/extensions": "off","import/no-absolute-path": "off"},};
'vite' should be listed in the project's dependencies, not devDependencies.:在
.eslintrc.json
中添加rules
设置{// ..."rules": {"import/no-extraneous-dependencies": ["error", {"devDependencies": true}]// ...}};
3. 添加 prettier 安装
npm i -D prettier eslint-config-prettier eslint-plugin-prettier
prettier: 核心模块
eslint-config-prettier: 关闭所有不必要或可能跟prettier产生冲突的规则
eslint-plugin-prettier: 可以让eslint使用prettier规则进行检查
配置
根目录下
.eslintrc.json
文件中添加extends
设置{// ..."extends": [// ..."plugin:prettier/recommended",],}
根目录下创建
.prettierrc.json
文件{"trailingComma": "es5","tabWidth": 2,"semi": true,"singleQuote": true}
注意??:
修改
.prettierrc.json
文件后,需要重启vscode才生效如果配置后,配置不生效,尝试以下设置:
文章图片
文章图片
文章图片
4. 添加 husky和lint-staged 安装
npm i -D lint-staged husky
配置
在
package.json
中添加脚本npm set-script prepare "husky install"
package.json
文件的scripts
中,就会自动添加prepare
;文章图片
2. 初始化husky,将 git hooks钩子交由husky执行
npm run prepare
会在根目录创建
.husky
文件夹文章图片
3. 配置
package.json
文章图片
package.json
文件如下:{"env": {"browser": true,"node": true,"es2021": true},"extends": ["plugin:react/recommended","airbnb","plugin:prettier/recommended","plugin:import/recommended"],"parser": "@typescript-eslint/parser","parserOptions": {"ecmaFeatures": {"jsx": true},"ecmaVersion": "latest","sourceType": "module"},"plugins": ["react", "@typescript-eslint"],"rules": {"import/no-extraneous-dependencies": ["error", {"devDependencies": true}],"react/jsx-filename-extension": ["error",{"extensions": [".js", ".jsx", ".tsx", ".ts"]}],"import/no-unresolved": "off","import/extensions": "off","import/no-absolute-path": "off"}}
添加钩子
pre-commit
npx husky add .husky/pre-commit "npx lint-staged"
5. 配置commitlint
- 作用:规范提交信息
- 格式:git commit -m '类型: 描述性文字'
类型 | 概念 |
---|---|
build | 编译相关的修改,例如发布版本、对项目构建或者依赖的改动 |
ci | 持续集成修改 |
docs | 文档修改 |
feat | 新特性、新功能 |
fix | 修改bug |
perf | 优化相关,比如提升性能、体验 |
refactor | 代码重构 |
revert | 回滚到上一个版本 |
style | 代码格式修改, 注意不是 css 修改 |
test | 测试用例修改 |
chore | 其他修改,比如改变构建流程、或者增加依赖库、工具等 |
- 安装
npm i -D commitlint @commitlint/config-conventional
- 配置
package.json
中配置commitlint
{// ..."commitlint": {"extends": ["@commitlint/config-conventional"]}}
- 添加钩子
npx husky add .husky/commit-msg 'npx --no-install commitlint --edit "$1"'
git commit
就会触发提交规范的校验啦;
以上就是vite项目添加eslint prettier及husky方法实例的详细内容,更多关于vite项目添加eslint prettier husky的资料请关注脚本之家其它相关文章!
推荐阅读
- vue-cli多页面应用实践之实现组件预览项目
- 面试|瑞吉外卖项目剩余功能补充
- ssm中使用kindedit|springboot项目中需要配置文件上传解析器吗_Spring Boot2 系列教程(一)纯 Java 搭建 SSM 项目...
- java项目工具|oss与文件上传组件MultipartFile
- 创投日报|钛媒体Pro创投日报:7月30日收录投融资项目7起
- Java异步记录日志-2022新项目
- Java专题|【在线实习】推推项目课程介绍—小说更新就通知
- 从小白进阶到职场达人的笔记本心法(项目策划篇)
- BUA软件工程个人博客作业
- 前端|idea如何运行Java Web项目(Servlet、JSP)