在create-react-app中添加自定义lint规则的方法如下:
npm install --save-dev eslint-config-react-app
{
"extends": [
"react-app",
"eslint-config-react-app"
],
"rules": {
// 添加你的自定义lint规则
}
}
npm start
现在,你的自定义lint规则将会应用在你的React应用程序中,你会在控制台中看到相应的lint错误和警告。
注意:在create-react-app中,你无法直接编辑eslint配置文件,但你可以通过上述方法添加自定义lint规则。这样可以确保你的React应用程序使用了与create-react-app默认配置一致的lint规则,而不会弹出样板。
领取专属 10元无门槛券
手把手带您无忧上云