mirror of
https://github.com/enricoros/big-AGI.git
synced 2026-05-10 21:50:14 -07:00
23 lines
670 B
JavaScript
23 lines
670 B
JavaScript
import { defineConfig } from "eslint/config";
|
|
import path from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
import js from "@eslint/js";
|
|
import { FlatCompat } from "@eslint/eslintrc";
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
const compat = new FlatCompat({
|
|
baseDirectory: __dirname,
|
|
recommendedConfig: js.configs.recommended,
|
|
allConfig: js.configs.all
|
|
});
|
|
|
|
export default defineConfig([{
|
|
extends: compat.extends("next/core-web-vitals"),
|
|
rules: {
|
|
//
|
|
"react-hooks/exhaustive-deps": ["warn", {
|
|
additionalHooks: "(useMemoShallowStable)",
|
|
}],
|
|
},
|
|
}]); |