ESLint語法規範報錯:Line 10 exceeds the maximum line length of 100

在vue-cli的組件中,html編碼中有一段較長的文字,ESLint報錯:Line 10 exceeds the maximum line length of 100 ,ESLint設置一行編碼最多不能超過100字符。html

方案一:vue

解決:vue-cli

 在文件夾中有個設置ESLint語法的js文件.eslintrc.js ,設置  "max-len" : ["error", {code : 300}] ,以下圖中位置。編碼

文件中,rules這個對象中,就是配置的ESlint 語法檢測規則。spa

可根據本身須要對一行的編碼量進行設置,具體的設置方法可參考:https://home.cnblogs.com/blog/。eslint

方案二:code

經過eslint-disable設置忽略本次Eslit語法規範,最後經過eslint-enable結束本次忽略。htm

相關文章
相關標籤/搜索