資料 | 網址 |
---|---|
ESlint: Expected !== and instead saw != | https://stackoverflow.com/questions/48375316/eslint-expected-and-instead-saw?answertab=votes#tab-top |
Configuring Rules | https://cn.eslint.org/docs/user-guide/configuring#configuring-rules |
要求使用 === 和 !== (eqeqeq) | https://cn.eslint.org/docs/rules/eqeqeq |
'eqeqeq': 'off'
ESLint 附帶有大量的規則。你可使用註釋或配置文件修改你項目中要使用的規則。要改變一個規則設置,你必須將規則 ID 設置爲下列值之一:
"off" 或 0 - 關閉規則
"warn" 或 1 - 開啓規則,使用警告級別的錯誤:warn (不會致使程序退出)
"error" 或 2 - 開啓規則,使用錯誤級別的錯誤:error (當被觸發的時候,程序會退出)ide
出處:https://cn.eslint.org/docs/user-guide/configuring#configuring-rulesui