mirror of
https://github.com/JOYCEQL/magic-resume.git
synced 2026-06-02 07:43:34 +02:00
20 lines
420 B
JavaScript
20 lines
420 B
JavaScript
import { defineConfig, globalIgnores } from "eslint/config";
|
|
|
|
export default defineConfig([
|
|
{
|
|
rules: {
|
|
"react-hooks/immutability": "off",
|
|
"react-hooks/preserve-manual-memoization": "off",
|
|
"react-hooks/purity": "off",
|
|
"react-hooks/set-state-in-effect": "off"
|
|
}
|
|
},
|
|
globalIgnores([
|
|
".next/**",
|
|
".open-next/**",
|
|
".wrangler/**",
|
|
"dist/**",
|
|
"node_modules/**"
|
|
])
|
|
]);
|