解決eslint報錯

丶微光丶發表於2020-12-10

暴力解決:直接關閉 ESLint
在 package.json 檔案中 新增

 "rules": {
    "generator-star-spacing": "off",
    "no-tabs":"off",
    "no-unused-vars":"off",
    "no-console":"off",
    "no-irregular-whitespace":"off",
    "no-debugger": "off"
}

相關文章