tasko/.eslintrc.json

17 lines
364 B
JSON
Raw Normal View History

2024-02-15 02:30:10 +00:00
{
2024-02-16 01:27:24 +00:00
"extends": ["next/core-web-vitals", "prettier"],
2024-06-26 02:32:55 +00:00
"plugins": ["@typescript-eslint", "eslint-plugin-react-compiler"],
2024-02-16 01:27:24 +00:00
"parser": "@typescript-eslint/parser",
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"parserOptions": {
"project": "./tsconfig.json"
}
}
2024-06-26 02:32:55 +00:00
],
"rules": {
"react-compiler/react-compiler": "warn"
}
2024-02-15 02:30:10 +00:00
}