eslint語法檢測報錯解決辦法

2022-02-12 23:26:48 字數 1240 閱讀 6922

檢查語法格式使得其規範化是好事,可是這個檢查也太非人類了一 一

f:\vue-source\mocktest2\src\mock\index.js

1:1 error expected space or tab after '//' in comment spaced-comment

4:1 error expected space or tab after '//' in comment spaced-comment

5:27 error a space is required after ',' comma-spacing

5:33 error a space is required after ',' comma-spacing

6:1 error expected indentation of 2 spaces but found 4 indent

7:1 error expected indentation of 2 spaces but found 4 indent

8:1 error expected indentation of 2 spaces but found 4 indent

9:1 error expected indentation of 4 spaces but found 8 indent

10:1 error expected indentation of 4 spaces but found 8 indent

11:1 error expected indentation of 4 spaces but found 8 indent

12:1 error expected indentation of 4 spaces but found 8 indent

13:1 error expected indentation of 2 spaces but found 4 indent

14:3 error newline required at end of file but not found eol-last

在vue工程根目錄使用vue.config.js檔案直接關閉eslint一 一

vue.config.js

module.exports =
下次直接不用了xdd暴躁!!

vue 版本檢測報錯

ps d project frontend vue vue cli two vue v vue v 無法將 vue v 項識別為 cmdlet 函式 指令碼檔案或可執行程式的名稱。請檢查名稱的拼寫,如果包括 路徑,請確保路徑正確,然後再試一次。所在位置 行 1 字元 1 vue v category...

gem install redis報錯解決辦法

redis cluster安裝需要通過gem install redis來安裝相關依賴。否則報錯。通過gem install redis會報如下錯誤1 error loading command install loaderror cannot load such file zlib error w...

Eslint報錯整理與解決方法

字面意思理解呢就是意想不到的製表符,當時出現的時候就是我習慣的使用tab鍵去打空格,但是eslint預設不認可tab,所以解決方法很簡單 在eslint的配置檔案中 eslintrc rules項中新增一行 no tabs off 如下 字面意思就是預期縮排2個空格,但找到1個tab。說實話,我一開...