共计 2153 个字符,预计需要花费 6 分钟才能阅读完成。
简介
今天看着写的代码越来越多后,发现自己读起都有点吃力了,哈哈,自己看着眼睛痛,就准备整顿一下,毕竟这个项目还要维护很久的,找解决方案和测试解决方案就用了一个半小时,严重开始怀疑自己的智商了。下面的目标让代码看起来很公正
代码编辑器
vscode
version: 版本 1.35.1 (1.35.1) 2019-06-12T14:19:05.197Z 更新的
vscode 代码格式化
因为目前公司就我一个后端,项目也不大,所以就采用这种方案,简单快捷粗暴。
一. 点击 code->preferences->settings 点击右上角 {}
二. 用户自定义设置 (/User/settings.json)
添加代码
"editor.formatOnType": true,
"editor.formatOnSave": true
ESLint 配置
ESLint 不仅有代码规范而且还有一部分语法检查的功能,ex: 命令规范 (驼峰) a== b 警告提示 a ===b…
ESLint 可以有效的规范代码,以后还是会采用,培养自己的规范的编码习惯
https://cn.eslint.org/
1.vscode 安装 ESLint
这里以配置 eslint-config-aribnb 的例子
vscode 在 extensions 中安装 ESLint
2.npm 安装
npm install -g eslint
3. 创建.eslintrc 文件
softwaredeMacBook-Pro:koa-pro software$ "eslint --init"
? How would you like to configure ESLint? "Use a popular style guide"
? Which style guide do you want to follow? "Airbnb" (https://github.com/airbnb/javascript)
? Do you use React? "No"
? What format do you want your config file to be in? "JSON"
Checking peerDependencies of eslint-config-airbnb-base@latest
The config that you have selected requires the following dependencies:
eslint-config-airbnb-base@latest eslint@^4.19.1 || ^5.3.0 eslint-plugin-import@^2.14.0
? Would you like to install them now with npm? "Yes"
Installing eslint-config-airbnb-base@latest, eslint@^4.19.1 || ^5.3.0, eslint-plugin-import@^2.14.0
npm WARN koa-pro@1.0.0 No repository field.
+ eslint@5.16.0
+ eslint-plugin-import@2.17.3
+ eslint-config-airbnb-base@13.1.0
updated 3 packages and audited 7469 packages in 23.559s
found 370 vulnerabilities (1 low, 367 moderate, 2 high)
run `npm audit fix` to fix them, or `npm audit` for details
Successfully created .eslintrc.json file in /Users/software/workspace/Me/huafu/koa-pro
项目目录下将会生成一个 eslintrc.json 的文件
{"extends": "airbnb-base"}
添加自己想要的设置,我这里 node 环境
{"env": {
"node": true,
"es6": true
},
"parserOptions": {# 解决 import export eslint 报错
"ecmaFeatures": {"legacyDecorators": true}
},
"extends": "airbnb-base"
}
4. 关联 eslint 与 vscode
1.code->preferences->settings 进入 user 的 seetings
2. 添加以下代码
"eslint.autoFixOnSave": true,// 保存自动修复 eslint 错误
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "vue",
"autoFix": true
}
],
"eslint.options": {// 指定 eslint 配置文件位置 i
"configFile": ".eslintrc.json" // 指定项目根目录中的 eslint 配置文件
}
这样 vscode 和 eslint 关联配置完成了,不出意外会报一大堆错。good lucky
总结:
主要是卡在 eslint.options 上,没看 vscode 的 extensions 的 eslint 的 README, 而去相信了百度,没有添加 eslint.options,那么一直都无法生效. 学的教训。good lucky for me
正文完
发表至:无分类
2019-06-19