reactjs 替换、删除、单引号和引号的Eslint错误

h9a6wy2h  于 2023-01-04  发布在  React
关注(0)|答案(1)|浏览(246)

我正在尝试运行我的项目,但是eslint生成了一些错误,这些错误在一段时间之前没有发生过,如果我尝试手动更正它们,其他错误也会出现。

ERROR

[eslint] 
src\components\Funcoes\GestaoUsuario\GestaoUsuario.js
  Line 1:34:    Replace `'react'` with `"react"`
prettier/prettier
      Line 10:1:    `@mui/material/Button` import should occur before import of `../../MDBox`
import/order
  Line 10:20:   Replace `'@mui/material/Button'` with `"@mui/material/Button"`
prettier/prettier
  Line 48:1:    Replace `············</DashboardLayout>),·idU:·0` with `········</DashboardLayout>␍⏎······),␍⏎······idU:·0,`

在其他错误中,即使有这些错误,项目运行也很完美,我如何才能使这些错误停止出现或解决它们?

mrwjdhj3

mrwjdhj31#

你需要用eslint格式化你的代码,在VSCode上有一个快捷方式,我想是Ctrl Shift P。如果你用的是其他编辑器,看看如何用eslint格式化代码。就我个人而言,我在把我的应用程序推到github时遇到了这些错误,因为存储库中的一些工作流失败了。

相关问题