0
當我使用ESLint檢查我的代碼,我得到這個錯誤---「陣營」的定義,但從來沒有使用任何未使用的 - 瓦爾React.js與ESlint設置
import React from 'react';
const app=({})=>{
return <div>123</div>;
};
export default app;
我怎麼能修改我的。 eslintrc.json文件來解決這個錯誤?
還有'eslint'我強烈推薦使用[漂亮](https://github.com/prettier/prettier)。在運行'eslint'後,它是一個非常棒的工具,用於格式化代碼。 – Hozefa
thx爲您的答案,它運作良好。 –