mirror of
https://github.com/ChatGPTNextWeb/NextChat.git
synced 2026-01-19 01:21:19 +08:00
- 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"
|
|
}
|
|
}
|