mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2024-11-21 03:20:57 +08:00
a3585685df
- Installed eslint-plugin-unused-imports - Updated .eslintrc.json to include rules for detecting unused imports
8 lines
150 B
JSON
8 lines
150 B
JSON
{
|
|
"extends": "next/core-web-vitals",
|
|
"plugins": ["prettier", "unused-imports"],
|
|
"rules": {
|
|
"unused-imports/no-unused-imports": "warn"
|
|
}
|
|
}
|