iT邦幫忙

2019 iT 邦幫忙鐵人賽

DAY 5
4

現在大家對 code 的要求已經不是先求有再求好,而是先求好再求更好,因此能提升程式碼品質的工具就越來越受大家的重視。而 ESLint 相較於 JavaScript Standard Style 插件來說,是比較正式的方法,也有完整的文件規範,適合團隊使用。

安裝

載入 VSCode 中的 ESLint 套件
https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint

安裝 ESlint 的 npm 套件,這樣就可以用 eslint 的指令,方便建立規範

$ npm install -g eslint

開啟 Terminal 後,輸入

$ eslint --init

https://ithelp.ithome.com.tw/upload/images/20181019/20111449q7E9uLbcly.png
建議選擇 Use a popular style guide,如果使用此選項,它會要求先建立 package.json。如果專案中沒有 package.json 可以輸入:

$ npm init

接著會一連串詢問,就一直按 Enter 就可以了~
最後會建立一個 package.json
https://ithelp.ithome.com.tw/upload/images/20181019/20111449iRVBIvcz0Q.png

接著一樣再輸入:

$ eslint --init

會出現三個主流的規範提供選擇:

  • Airbnb
  • Standard
  • Google

這邊我們安裝 Airbnb,安裝時會出現幾個問題,就照自己要使用的內容回答 Y / N 就完成囉!
https://ithelp.ithome.com.tw/upload/images/20181019/20111449SEpMFjxNOg.png
跑到這邊就算是完成了!
https://ithelp.ithome.com.tw/upload/images/20181019/20111449KXGWQgOPNp.png
確認完成!

錯誤提示

當程式碼不符合規範的時候,會出現錯誤提示:
https://ithelp.ithome.com.tw/upload/images/20181019/20111449507keUYJ9r.png

10 個常見的 ESLint 錯誤

剛開始使用 ESLint 時可能因為習慣尚未改變或是對於語法還不熟悉而遇到一些錯誤,這邊就整理 10 個新入 ESLint 坑較常見的錯誤:

  1. 缺少分號
Missing semicolon.
  1. 中序表示式(常用是'等於')要有空格
Infix  operators must be spaced.
  1. 用 ES6 的變數表達樣式
Unexpected string concatenation. (prefer-template) 
這邊舉一個例子:
return someone + '吃飯了' ;
使用 ESLint 規範就要改成 
return`${someone} 吃飯了`;
  1. 單行的 function 可以省略 retrun,參數的括號也可以省略
Unexpected block statement surrounding arrow body; move the returned value immediately after the `=>`. 
這邊舉一個例子:  
const callSomeone = (someone) => {
  return `${someone} 吃飯了`;
};
使用 ESLint 規範就要改成
const callSomeone = someone => `${someone} 吃飯了`;
  1. 字串必須使用單引號
Strings must use singlequote. (quotes) 
  1. 無法使用 var,需使用 let 或是 const
Unexpected var, use let or const instead. (no-var) 
  1. 檔案最後需要留有一行
Newline required at end of file but not found. (eol-last) 
  1. 前面的空格應是兩格但目前為空 4 格
Expected indentation of 2 spaces but found 4. (indent) 
  1. document 沒有被定義
'document' is not defined. (no-undef) 

發生這個錯誤時,可以到 .eslintrc.js 加入

"globals": { 
  "document": false 
}

將 document 加入全域的定義。

  1. 在符號後不能有空格
Trailing spaces not allowed. (no-trailing-spaces) 

如下圖游標前粉紅色底線的部分
https://ithelp.ithome.com.tw/upload/images/20181019/20111449HG3847Dyj5.png

透過註解的方式,做一些變化

  1. 某文件 ESLint不檢測
/* eslint-disable */ 

將這行加入檔案後,該檔就不會被 ESLint 規範,因此不符合也不會有錯誤提示出現。

  1. 設置全域變數
/* global variable */ 

要定義全域變數可以使用此語法,讓變數在各個檔案間都可以使用。

小結

學習使用 ESLint 來維持程式碼品質時,一開始可能會覺得有點挫折,經常為了不知道哪邊錯誤而 debug 很久,但習慣使用以後,在團隊開發可以維持程式碼品質的一致性,而對於自己個人開發也是自我要求的一個好工具。


上一篇
VSCode - 好用插件 feat. 開發小技巧
下一篇
Codepen Project - 完整的線上編輯器
系列文
前端工具百寶箱 - 六角學院30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言