tasko/.eslintrc.json
2024-06-25 22:32:55 -04:00

16 lines
364 B
JSON

{
"extends": ["next/core-web-vitals", "prettier"],
"plugins": ["@typescript-eslint", "eslint-plugin-react-compiler"],
"parser": "@typescript-eslint/parser",
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"parserOptions": {
"project": "./tsconfig.json"
}
}
],
"rules": {
"react-compiler/react-compiler": "warn"
}
}