簡介
今天看著寫的代碼越來越多后,發(fā)現(xiàn)自己讀起都有點吃力了,哈哈,自己看著眼睛痛,就準(zhǔn)備整頓一下,畢竟這個項目還要維護很久的,找解決方案和測試解決方案就用了一個半小時,嚴(yán)重開始懷疑自己的智商了。下面的目標(biāo)讓代碼看起來很公正
代碼編輯器
vscode
version:版本 1.35.1 (1.35.1) 2019-06-12T14:19:05.197Z更新的
vscode代碼格式化
因為目前公司就我一個后端,項目也不大,所以就采用這種方案,簡單快捷粗暴。
一.點擊code->preferences->settings 點擊右上角{}
二.用戶自定義設(shè)置(/User/settings.json)
添加代碼
"editor.formatOnType": true,
"editor.formatOnSave": true
ESLint配置
ESLint不僅有代碼規(guī)范而且還有一部分語法檢查的功能,ex:命令規(guī)范(駝峰) a==b警告提示a===b...
ESLint可以有效的規(guī)范代碼,以后還是會采用,培養(yǎng)自己的規(guī)范的編碼習(xí)慣
https://cn.eslint.org/
1.vscode安裝ESLint
這里以配置eslint-config-aribnb的例子
vscode在extensions中安裝ESLint
2.npm安裝
3.創(chuàng)建.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"
}
添加自己想要的設(shè)置,我這里node環(huán)境
{"env": {
"node": true,
"es6": true
},
"parserOptions": {#解決import export eslint報錯
"ecmaFeatures": {
"legacyDecorators": true
}
},
"extends": "airbnb-base"
}
4.關(guān)聯(lián)eslint與vscode
1.code->preferences->settings 進入user的seetings
2.添加以下代碼
"eslint.autoFixOnSave": true,//保存自動修復(fù)eslint錯誤
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "vue",
"autoFix": true
}
],
"eslint.options": {//指定eslint配置文件位置i
"configFile": ".eslintrc.json" //指定項目根目錄中的eslint配置文件
}
這樣vscode和eslint關(guān)聯(lián)配置完成了,不出意外會報一大堆錯。good lucky
總結(jié):
主要是卡在eslint.options上,沒看vscode的extensions的eslint的README,而去相信了百度,沒有添加eslint.options,那么一直都無法生效.學(xué)的教訓(xùn)。
到此這篇關(guān)于vscode代碼格式化和eslint的使用的文章就介紹到這了,更多相關(guān)vscode代碼格式化內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- 在vue中使用eslint,配合vscode的操作
- 關(guān)于VSCode 裝好ESLint 插件 import 報黃線的問題
- Idea安裝Eslint插件提示:Plugin NativeScript was not installed的問題
- vue-cli3項目配置eslint代碼規(guī)范的完整步驟
- vscode配置setting.json文件實現(xiàn)eslint自動格式代碼
- 使用eslint和githooks統(tǒng)一前端風(fēng)格的技巧
- eslint+prettier統(tǒng)一代碼風(fēng)格的實現(xiàn)方法
- vue-cli4項目開啟eslint保存時自動格式問題
- vscode 配置vue+vetur+eslint+prettier自動格式化功能
- JS代碼檢查工具ESLint介紹與使用方法
- Vue的Eslint配置文件eslintrc.js說明與規(guī)則介紹
- vue項目中使用eslint+prettier規(guī)范與檢查代碼的方法
- ESLint 是如何檢查 .vue 文件的