mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-10 02:04:38 +00:00
13 lines
258 B
JavaScript
13 lines
258 B
JavaScript
import reactRefresh from "eslint-plugin-react-refresh";
|
|
|
|
export default [
|
|
{
|
|
extends: ["next/core-web-vitals"],
|
|
plugins: {
|
|
"react-refresh": reactRefresh,
|
|
},
|
|
rules: {
|
|
"react-refresh/only-export-components": "warn",
|
|
},
|
|
},
|
|
];
|