ESlint 檢查項及其解決辦法
阿新 • • 發佈:2018-12-17
1.錯誤提示
✘ http://eslint.org/docs/rules/no-trailing-spaces Trailing spaces not allowed
src\App.vue:2:17
<div id="app">
方案1.這句的意思是 在<div id="app">這行程式碼後面存在空格,去掉空格
方案2,調整規則,但是目前規則(ESLint 0.7.1.)設定裡只有註釋行和空白行設定允許空格
參考 https://eslint.org/docs/rules/no-trailing-spaces#disallow-trailing-whitespace-at-the-end-of-lines-no-trailing-spaces
專案下.eslintrc.js檔案 rules節點下設定
// ignoreComments 允許註釋尾隨空格,skipBlankLines允許 空行空格
'no-trailing-spaces':["error", { "ignoreComments": true ,"skipBlankLines":true}],
2.錯誤提示:
✘ http://eslint.org/docs/rules/eol-last Newline required at end of file but not found
src\components\second.vue:17:10
</script>
方案:這句話的意思是 在檔案結尾需要有一個空行
3.錯誤提示
✘ http://eslint.org/docs/rules/key-spacing Missing space before value for key 'path'
src\router\index.js:16:12
path:'/',
方案:這句話的意思是說在在值('/')和關鍵字(path)之間缺少空格