tasko/.eslintrc.json

14 lines
270 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"],
"plugins": ["@typescript-eslint"],
"parser": "@typescript-eslint/parser",
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"parserOptions": {
"project": "./tsconfig.json"
}
}
]
2024-02-15 02:30:10 +00:00
}