blob: 9dd39051105fe29a76f086d9607f14c3b6e1185f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import nextVitals from "eslint-config-next/core-web-vitals";
import nextTypescript from "eslint-config-next/typescript";
const eslintConfig = [
...nextVitals,
...nextTypescript,
{
rules: {
"react-hooks/set-state-in-effect": "off"
}
}
];
export default eslintConfig;
|